Skip to content

Commit dd4497d

Browse files
committed
Update all dependencies (cargo upgrade)
1 parent 50f90d5 commit dd4497d

File tree

9 files changed

+31
-31
lines changed

9 files changed

+31
-31
lines changed

bindings_generator/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ edition = "2018"
1414
debug = []
1515

1616
[dependencies]
17-
heck = "0.3.0"
18-
roxmltree = "0.14.0"
19-
proc-macro2 = "1.0.6"
20-
quote = "1.0.2"
21-
syn = { version = "1.0", features = ["full", "extra-traits", "visit"] }
22-
miniserde = "=0.1.13"
17+
heck = "0.3.3"
18+
roxmltree = "0.14.1"
19+
proc-macro2 = "1.0.28"
20+
quote = "1.0.9"
21+
syn = { version = "1.0.74", features = ["full", "extra-traits", "visit"] }
22+
miniserde = "0.1.14"
2323
unindent = "0.1.7"

examples/dodge_the_creeps/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
gdnative = { path = "../../gdnative" }
13-
rand = "0.8.3"
13+
rand = "0.8.4"

examples/scene_create/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
gdnative = { path = "../../gdnative" }
13-
glam = "0.16.0"
13+
glam = "0.17.3"

gdnative-bindings/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ one_class_one_file = []
1717
[dependencies]
1818
gdnative-sys = { path = "../gdnative-sys", version = "0.9.3" }
1919
gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
20-
libc = "0.2"
21-
bitflags = "1.2"
20+
libc = "0.2.98"
21+
bitflags = "1.2.1"
2222

2323
[build-dependencies]
24-
heck = "0.3.0"
24+
heck = "0.3.3"
2525
gdnative_bindings_generator = { path = "../bindings_generator", version = "=0.9.3" }

gdnative-core/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ type_tag_fallback = []
1818

1919
[dependencies]
2020
gdnative-sys = { path = "../gdnative-sys", version = "0.9.3" }
21-
libc = "0.2"
21+
libc = "0.2.98"
2222
approx = "0.5.0"
23-
glam = "0.16.0"
24-
indexmap = "1.6.0"
25-
ahash = "0.7.0"
26-
once_cell = "1.7.2"
23+
glam = "0.17.3"
24+
indexmap = "1.7.0"
25+
ahash = "0.7.4"
26+
once_cell = "1.8.0"
2727

2828
gdnative-impl-proc-macros = { path = "../impl/proc_macros", version = "=0.9.3" }
2929

30-
bitflags = { version = "1.2", optional = true }
31-
parking_lot = { version = "0.11.0", optional = true }
30+
bitflags = { version = "1.2.1", optional = true }
31+
parking_lot = { version = "0.11.1", optional = true }
3232
atomic-take = "1.0.0"

gdnative-derive/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ edition = "2018"
1414
proc-macro = true
1515

1616
[dependencies]
17-
syn = { version = "1.0", features = ["full", "extra-traits", "visit"] }
18-
quote = "1.0"
19-
proc-macro2 = "^1.0"
17+
syn = { version = "1.0.74", features = ["full", "extra-traits", "visit"] }
18+
quote = "1.0.9"
19+
proc-macro2 = "1.0.28"

gdnative-sys/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ workspace = ".."
1212
edition = "2018"
1313

1414
[dependencies]
15-
libc = "0.2"
15+
libc = "0.2.98"
1616

1717
[build-dependencies]
18-
bindgen = { version = "0.58.0", default-features = false, features = ["runtime"] }
19-
proc-macro2 = "1.0.6"
20-
quote = "1.0.2"
21-
miniserde = "=0.1.13"
18+
bindgen = { version = "0.59.1", default-features = false, features = ["runtime"] }
19+
proc-macro2 = "1.0.28"
20+
quote = "1.0.9"
21+
miniserde = "0.1.14"

gdnative/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
2525
gdnative-bindings = { optional = true, path = "../gdnative-bindings", version = "=0.9.3" }
2626

2727
[dev-dependencies]
28-
trybuild = "1.0"
29-
rustversion = "1.0"
28+
trybuild = "1.0.43"
29+
rustversion = "1.0.5"
3030

3131
[package.metadata.docs.rs]
3232
all-features = true

impl/proc_macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ edition = "2018"
1313
proc-macro = true
1414

1515
[dependencies]
16-
syn = { version = "1.0", features = ["full", "extra-traits", "visit", "visit-mut"] }
17-
quote = "1.0"
18-
proc-macro2 = "^1.0"
16+
syn = { version = "1.0.74", features = ["full", "extra-traits", "visit", "visit-mut"] }
17+
quote = "1.0.9"
18+
proc-macro2 = "1.0.28"

0 commit comments

Comments
 (0)