Skip to content

Commit 9eabb7f

Browse files
committed
Remove explicit versions for intra-dependencies
1 parent 0433fd4 commit 9eabb7f

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

gdnative-async/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ edition = "2018"
1313
[features]
1414

1515
[dependencies]
16-
gdnative-derive = { path = "../gdnative-derive", version = "=0.9.3" }
17-
gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
18-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.9.3" }
16+
gdnative-derive = { path = "../gdnative-derive" }
17+
gdnative-core = { path = "../gdnative-core" }
18+
gdnative-bindings = { path = "../gdnative-bindings" }
1919
atomic-waker = "1"
2020
crossbeam-channel = "0.5"
2121
crossbeam-utils = "0.8"

gdnative-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ gd-test = []
1616
type-tag-fallback = []
1717

1818
[dependencies]
19-
gdnative-sys = { path = "../gdnative-sys", version = "0.9.3" }
20-
gdnative-impl-proc-macros = { path = "../impl/proc_macros", version = "=0.9.3" }
19+
gdnative-sys = { path = "../gdnative-sys" }
20+
gdnative-impl-proc-macros = { path = "../impl/proc_macros" }
2121
ahash = "0.7.6"
2222
approx = "0.5"
2323
atomic-take = "1"
@@ -30,4 +30,4 @@ parking_lot = "0.12"
3030
serde = { version = "1", features = ["derive"], optional = true }
3131

3232
[dev-dependencies]
33-
gdnative = { path = "../gdnative", version = "0.9.3" } # for doc-tests
33+
gdnative = { path = "../gdnative" } # for doc-tests

gdnative/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ gd-test = ["gdnative-core/gd-test"]
2727
type-tag-fallback = ["gdnative-core/type-tag-fallback"]
2828

2929
[dependencies]
30-
gdnative-derive = { path = "../gdnative-derive", version = "=0.9.3" }
31-
gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
32-
gdnative-bindings = { path = "../gdnative-bindings", version = "=0.9.3" }
33-
gdnative-async = { path = "../gdnative-async", version = "=0.9.3", optional = true }
30+
gdnative-derive = { path = "../gdnative-derive" }
31+
gdnative-core = { path = "../gdnative-core" }
32+
gdnative-bindings = { path = "../gdnative-bindings" }
33+
gdnative-async = { path = "../gdnative-async", optional = true }
3434

3535
[dev-dependencies]
3636
trybuild = "1.0.18" # earrlier versions use broken termcolor 1.0.0

0 commit comments

Comments
 (0)