Skip to content

Commit 42d2237

Browse files
committed
Upgrade all the heed subcrate dependencies
1 parent 826fdac commit 42d2237

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

heed-types/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ readme = "../README.md"
99
edition = "2018"
1010

1111
[dependencies]
12-
bincode = { version = "1.2.1", optional = true }
13-
bytemuck = { version = "1.5.0", features = ["extern_crate_alloc", "extern_crate_std"] }
14-
byteorder = "1.4.2"
12+
bincode = { version = "1.3.3", optional = true }
13+
bytemuck = { version = "1.12.1", features = ["extern_crate_alloc", "extern_crate_std"] }
14+
byteorder = "1.4.3"
1515
heed-traits = { version = "0.7.0", path = "../heed-traits" }
16-
serde = { version = "1.0.117", optional = true }
17-
serde_json = { version = "1.0.59", optional = true }
16+
serde = { version = "1.0.144", optional = true }
17+
serde_json = { version = "1.0.85", optional = true }
1818

1919
[dev-dependencies]
20-
rand = "0.8.2"
20+
rand = "0.8.5"
2121

2222
[features]
2323
default = ["serde-bincode", "serde-json"]

heed/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ readme = "../README.md"
1111
edition = "2018"
1212

1313
[dependencies]
14-
bytemuck = "1.5.0"
15-
byteorder = { version = "1.3.4", default-features = false }
14+
bytemuck = "1.12.1"
15+
byteorder = { version = "1.4.3", default-features = false }
1616
heed-traits = { version = "0.7.0", path = "../heed-traits" }
1717
heed-types = { version = "0.7.2", path = "../heed-types" }
18-
libc = "0.2.80"
18+
libc = "0.2.132"
1919
lmdb-master3-sys = { path = "../lmdb-master3-sys" }
20-
once_cell = "1.5.2"
20+
once_cell = "1.14.0"
2121
page_size = "0.4.2"
22-
serde = { version = "1.0.118", features = ["derive"], optional = true }
23-
synchronoise = "1.0.0"
22+
serde = { version = "1.0.144", features = ["derive"], optional = true }
23+
synchronoise = "1.0.1"
2424

2525
[dev-dependencies]
26-
serde = { version = "1.0.118", features = ["derive"] }
27-
bytemuck = { version = "1.5.0", features = ["derive"] }
26+
serde = { version = "1.0.144", features = ["derive"] }
27+
bytemuck = { version = "1.12.1", features = ["derive"] }
2828
tempfile = "3.3.0"
2929

3030
[target.'cfg(windows)'.dependencies]
31-
url = "2.2.0"
31+
url = "2.3.1"
3232

3333
[features]
3434
# The `serde` feature makes some types serializable,

lmdb-master3-sys/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ build = "build.rs"
2323
name = "lmdb_master3_sys"
2424

2525
[dependencies]
26-
libc = "0.2"
26+
libc = "0.2.132"
2727

2828
[build-dependencies]
29-
pkg-config = "0.3"
30-
cc = "1.0"
29+
pkg-config = "0.3.25"
30+
cc = "1.0.73"
3131
bindgen = { version = "0.60.1", default-features = false, optional = true, features = ["runtime"] }
3232

3333
[features]

0 commit comments

Comments
 (0)