Skip to content

Commit e74c573

Browse files
bors[bot]Bromeon
andauthored
Merge #799
799: Update to latest dependencies r=Bromeon a=Bromeon Also updates ahash, which was previously reverted (0.7.4 -> 0.7.6) Co-authored-by: Jan Haller <bromeon@gmail.com>
2 parents 6effb3e + 3b0c8cf commit e74c573

File tree

8 files changed

+29
-29
lines changed

8 files changed

+29
-29
lines changed

bindings_generator/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ debug = []
1616
[dependencies]
1717
heck = "0.3.3"
1818
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"
19+
proc-macro2 = "1.0.30"
20+
quote = "1.0.10"
21+
syn = { version = "1.0.80", features = ["full", "extra-traits", "visit"] }
22+
miniserde = "0.1.15"
2323
unindent = "0.1.7"
2424
regex = "1.5.4"
25-
memchr = "2.4" # to satisfy regex needing memchr >= 2.4
25+
memchr = "2.4.1"

gdnative-bindings/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ 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.98"
21-
bitflags = "1.2.1"
20+
libc = "0.2.104"
21+
bitflags = "1.3.2"
2222

2323
[build-dependencies]
2424
heck = "0.3.3"

gdnative-core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ type_tag_fallback = []
1919
[dependencies]
2020
gdnative-sys = { path = "../gdnative-sys", version = "0.9.3" }
2121
gdnative-impl-proc-macros = { path = "../impl/proc_macros", version = "=0.9.3" }
22-
ahash = "=0.7.4" # TODO use flexible version as soon as https://github.com/tkaitchuck/aHash/issues/99 is fixed
22+
ahash = "0.7.6"
2323
approx = "0.5.0"
2424
atomic-take = "1.0.0"
25-
bitflags = { version = "1.2.1", optional = true }
25+
bitflags = { version = "1.3.2", optional = true }
2626
glam = "0.19.0"
2727
indexmap = "1.7.0"
28-
libc = "0.2.98"
28+
libc = "0.2.104"
2929
once_cell = "1.8.0"
30-
parking_lot = { version = "0.11.1", optional = true }
31-
serde = { version = "1", features = ["derive"], optional = true }
30+
parking_lot = { version = "0.11.2", optional = true }
31+
serde = { version = "1.0.130", features = ["derive"], optional = true }
3232

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

gdnative-derive/Cargo.toml

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

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

2121
[dev-dependencies]
2222
# This is included for the doc tests.

gdnative-sys/Cargo.toml

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

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

1717
[build-dependencies]
1818
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"
19+
proc-macro2 = "1.0.30"
20+
quote = "1.0.10"
21+
miniserde = "0.1.15"

gdnative/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ gdnative-core = { path = "../gdnative-core", version = "=0.9.3" }
2626
gdnative-bindings = { optional = true, path = "../gdnative-bindings", version = "=0.9.3" }
2727

2828
[dev-dependencies]
29-
trybuild = "1.0.43"
29+
trybuild = "1.0.50"
3030
rustversion = "1.0.5"
3131

3232
[package.metadata.docs.rs]

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.74", features = ["full", "extra-traits", "visit", "visit-mut"] }
17-
quote = "1.0.9"
18-
proc-macro2 = "1.0.28"
16+
syn = { version = "1.0.80", features = ["full", "extra-traits", "visit", "visit-mut"] }
17+
quote = "1.0.10"
18+
proc-macro2 = "1.0.30"

test/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ type_tag_fallback = ["gdnative/type_tag_fallback"]
1616
gdnative = { path = "../gdnative", features = ["gd_test", "serde"] }
1717
gdnative-derive = { path = "../gdnative-derive" }
1818
approx = "0.5.0"
19-
ron = "0.6.4"
20-
serde = "1"
21-
serde_json = "1.0.64"
19+
ron = "0.6.5"
20+
serde = "1.0.130"
21+
serde_json = "1.0.68"
2222
bincode = "1.3.3"
23-
serde_cbor = "0.11.1"
24-
serde_yaml = "0.8.17"
23+
serde_cbor = "0.11.2"
24+
serde_yaml = "0.8.21"
2525
rmp-serde = "0.15.5"

0 commit comments

Comments
 (0)