Skip to content

Commit d00a41c

Browse files
committed
chore: add versions to path dependencies
1 parent 3373958 commit d00a41c

File tree

26 files changed

+140
-85
lines changed

26 files changed

+140
-85
lines changed

sandpolis-account/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-account"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
anyhow = { workspace = true }
810
validator = { workspace = true }
911
serde = { workspace = true }
10-
sandpolis-instance = { path = "../sandpolis-instance" }
11-
sandpolis-database = { path = "../sandpolis-database" }
12+
sandpolis-instance = { path = "../sandpolis-instance", version = "0.0.1" }
13+
sandpolis-database = { path = "../sandpolis-database", version = "0.0.1" }
1214

1315
[features]
1416
client = []

sandpolis-agent/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-agent"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
anyhow = { workspace = true }
@@ -10,8 +12,8 @@ axum = { workspace = true }
1012
axum-macros = { workspace = true }
1113
clap = { workspace = true }
1214
tokio-cron-scheduler = { version = "0.13.0", optional = true }
13-
sandpolis-network = { path = "../sandpolis-network" }
14-
sandpolis-database = { path = "../sandpolis-database" }
15+
sandpolis-network = { path = "../sandpolis-network", version = "0.0.1" }
16+
sandpolis-database = { path = "../sandpolis-database", version = "0.0.1" }
1517

1618
[features]
1719
agent = ["dep:tokio-cron-scheduler"]

sandpolis-alert/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-alert"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
anyhow = { workspace = true }

sandpolis-bootagent/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-bootagent"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
uefi = { version = "0.34.1", features = [ #"panic_handler"
@@ -27,4 +29,4 @@ embassy-net = { version = "0.6.0", features = [
2729
"proto-ipv6",
2830
"dns",
2931
] }
30-
sandpolis-snapshot = { path = "../sandpolis-snapshot" }
32+
sandpolis-snapshot = { path = "../sandpolis-snapshot", version = "0.0.1" }

sandpolis-client/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-client"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
anyhow = { workspace = true }
@@ -13,8 +15,8 @@ clap = { workspace = true }
1315
passwords = { version = "3.1.16", optional = true, features = [
1416
"common-password",
1517
] }
16-
sandpolis-instance = { path = "../sandpolis-instance" }
17-
sandpolis-database = { path = "../sandpolis-database" }
18+
sandpolis-instance = { path = "../sandpolis-instance", version = "0.0.1" }
19+
sandpolis-database = { path = "../sandpolis-database", version = "0.0.1" }
1820

1921
# GUI dependencies
2022
# TODO need bevy release for uuid version

sandpolis-database/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-database"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
anyhow = { workspace = true }

sandpolis-deploy/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-deploy"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
anyhow = { workspace = true }
810
tracing = { workspace = true }
911
os_info = { workspace = true }
1012
russh = { workspace = true, optional = true }
11-
sandpolis-group = { path = "../sandpolis-group" }
13+
sandpolis-group = { path = "../sandpolis-group", version = "0.0.1" }
1214

1315
[features]
1416
agent = ["dep:russh"]

sandpolis-desktop/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-desktop"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
axum = { workspace = true }

sandpolis-filesystem/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-filesystem"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
anyhow = { workspace = true }
@@ -11,8 +13,8 @@ axum-macros = { workspace = true }
1113
fuser = { version = "0.15.1", optional = true, features = ["serializable"] }
1214
notify = { version = "8.0.0", optional = true }
1315
tracing = { workspace = true }
14-
sandpolis-network = { path = "../sandpolis-network" }
15-
sandpolis-group = { path = "../sandpolis-group" }
16+
sandpolis-network = { path = "../sandpolis-network", version = "0.0.1" }
17+
sandpolis-group = { path = "../sandpolis-group", version = "0.0.1" }
1618

1719
[features]
1820
agent = ["dep:notify"]

sandpolis-group/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
2+
description = "Virtual estate monitoring & management!"
3+
edition = "2024"
4+
license = "AGPL-3.0-only"
25
name = "sandpolis-group"
36
version = "0.0.1"
4-
edition = "2024"
57

68
[dependencies]
79
anyhow = { workspace = true }
@@ -29,8 +31,8 @@ x509-parser = { version = "0.17.0" }
2931
rustls-pki-types = { version = "1.10.1", optional = true }
3032
validator = { workspace = true }
3133
regex = { workspace = true }
32-
sandpolis-instance = { path = "../sandpolis-instance" }
33-
sandpolis-database = { path = "../sandpolis-database" }
34+
sandpolis-instance = { path = "../sandpolis-instance", version = "0.0.1" }
35+
sandpolis-database = { path = "../sandpolis-database", version = "0.0.1" }
3436

3537
[dev-dependencies]
3638
# Used to test certificate authentication with a different backend

0 commit comments

Comments
 (0)