Skip to content

Commit

Permalink
Upgrade all the heed subcrate dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Sep 15, 2022
1 parent 921aa62 commit 23979c5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions heed-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ readme = "../README.md"
edition = "2018"

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

[dev-dependencies]
rand = "0.8.2"
rand = "0.8.5"

[features]
default = ["serde-bincode", "serde-json"]
Expand Down
18 changes: 9 additions & 9 deletions heed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@ readme = "../README.md"
edition = "2018"

[dependencies]
bytemuck = "1.5.0"
byteorder = { version = "1.3.4", default-features = false }
bytemuck = "1.12.1"
byteorder = { version = "1.4.3", default-features = false }
heed-traits = { version = "0.7.0", path = "../heed-traits" }
heed-types = { version = "0.7.2", path = "../heed-types" }
libc = "0.2.80"
libc = "0.2.132"
lmdb-master3-sys = { path = "../lmdb-master3-sys" }
once_cell = "1.5.2"
once_cell = "1.14.0"
page_size = "0.4.2"
serde = { version = "1.0.118", features = ["derive"], optional = true }
synchronoise = "1.0.0"
serde = { version = "1.0.144", features = ["derive"], optional = true }
synchronoise = "1.0.1"

[dev-dependencies]
serde = { version = "1.0.118", features = ["derive"] }
bytemuck = { version = "1.5.0", features = ["derive"] }
serde = { version = "1.0.144", features = ["derive"] }
bytemuck = { version = "1.12.1", features = ["derive"] }
tempfile = "3.3.0"

[target.'cfg(windows)'.dependencies]
url = "2.2.0"
url = "2.3.1"

[features]
# The `serde` feature makes some types serializable,
Expand Down
6 changes: 3 additions & 3 deletions lmdb-master3-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ build = "build.rs"
name = "lmdb_master3_sys"

[dependencies]
libc = "0.2"
libc = "0.2.132"

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

[features]
Expand Down

0 comments on commit 23979c5

Please sign in to comment.