Skip to content

Commit 0e5c396

Browse files
committed
Specify exact versions for all published (build-)dependencies
1 parent e7f7ac5 commit 0e5c396

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

godot-codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ api-custom = ["godot-bindings/api-custom"]
2020
experimental-godot-api = []
2121

2222
[dependencies]
23-
godot-bindings = { path = "../godot-bindings" }
23+
godot-bindings = { path = "../godot-bindings", version = "=0.1.0" }
2424

2525
heck = "0.4"
2626
nanoserde = "0.1.35"
@@ -34,7 +34,7 @@ quote = "1.0.29"
3434
regex = { version = "1.5.5", default-features = false, features = ["std", "unicode-bool", "unicode-gencat"] }
3535

3636
[build-dependencies]
37-
godot-bindings = { path = "../godot-bindings" } # emit_godot_version_cfg
37+
godot-bindings = { path = "../godot-bindings", version = "=0.1.0" } # emit_godot_version_cfg
3838

3939
# https://docs.rs/about/metadata
4040
[package.metadata.docs.rs]

godot-core/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,22 +43,22 @@ api-4-2-2 = ["godot-ffi/api-4-2-2"]
4343
# ]]
4444

4545
[dependencies]
46-
godot-ffi = { path = "../godot-ffi" }
46+
godot-ffi = { path = "../godot-ffi", version = "=0.1.0" }
4747

4848
# See https://docs.rs/glam/latest/glam/index.html#feature-gates
4949
glam = { version = "0.27", features = ["debug-glam-assert"] }
5050
serde = { version = "1", features = ["derive"], optional = true }
51-
godot-cell = { path = "../godot-cell" }
51+
godot-cell = { path = "../godot-cell", version = "=0.1.0" }
5252

53-
# Reverse dev dependencies so doctests can use `godot::` prefix
53+
[build-dependencies]
54+
godot-bindings = { path = "../godot-bindings", version = "=0.1.0" }
55+
godot-codegen = { path = "../godot-codegen", version = "=0.1.0" }
56+
57+
# Reverse dev dependencies so doctests can use `godot::` prefix.
5458
[dev-dependencies]
5559
godot = { path = "../godot" }
5660
serde_json = { version = "1.0" }
5761

58-
[build-dependencies]
59-
godot-bindings = { path = "../godot-bindings" }
60-
godot-codegen = { path = "../godot-codegen" }
61-
6262
# https://docs.rs/about/metadata
6363
[package.metadata.docs.rs]
6464
features = ["experimental-godot-api"]

godot-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ libc = "0.2.153"
4848
gensym = "0.1.1"
4949

5050
[build-dependencies]
51-
godot-bindings = { path = "../godot-bindings" }
52-
godot-codegen = { path = "../godot-codegen" }
51+
godot-bindings = { path = "../godot-bindings", version = "=0.1.0" }
52+
godot-codegen = { path = "../godot-codegen", version = "=0.1.0" }
5353

5454
# https://docs.rs/about/metadata
5555
[package.metadata.docs.rs]

godot-macros/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ api-custom = ["godot-bindings/api-custom"]
1616
[lib]
1717
proc-macro = true
1818

19-
# Reverse dev dependencies so doctests can use `godot::` prefix
20-
[dev-dependencies]
21-
godot = { path = "../godot" }
22-
2319
[dependencies]
2420
# Minimum versions compatible with -Zminimal-versions
2521
proc-macro2 = "1.0.63"
@@ -28,7 +24,11 @@ quote = "1.0.29"
2824
venial = "0.6"
2925

3026
[build-dependencies]
31-
godot-bindings = { path = "../godot-bindings" } # emit_godot_version_cfg
27+
godot-bindings = { path = "../godot-bindings", version = "=0.1.0" } # emit_godot_version_cfg
28+
29+
# Reverse dev dependencies so doctests can use `godot::` prefix.
30+
[dev-dependencies]
31+
godot = { path = "../godot" }
3232

3333
# https://docs.rs/about/metadata
3434
[package.metadata.docs.rs]

godot/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ debug-log = ["godot-core/debug-log"]
4848
trace = ["godot-core/trace"]
4949

5050
[dependencies]
51-
godot-core = { path = "../godot-core" }
52-
godot-macros = { path = "../godot-macros" }
51+
godot-core = { path = "../godot-core", version = "=0.1.0" }
52+
godot-macros = { path = "../godot-macros", version = "=0.1.0" }
5353

5454
# https://docs.rs/about/metadata
5555
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)