Skip to content

Commit

Permalink
Upgrade incompatible dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Dec 3, 2024
1 parent f54db31 commit f4e15f9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions convert-to-heed3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ for file in $(find heed/src -type f -name "*.rs"); do
done

# Make it easier to rollback by doing a commit
git config --global user.email "[email protected]"
git config --global user.name "The CI"
git config --local user.email "[email protected]"
git config --local user.name "The CI"
git commit -am 'remove-me: heed3 changes generate by the convert-to-heed3.sh script'

echo "Heed3 crate setup completed successfully. Configurations for the heed crate have been copied and modified."
Expand Down
18 changes: 9 additions & 9 deletions heed3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@ edition = "2021"

[dependencies]
# TODO update dependencies
aead = { version = "0.5.1", default-features = false }
aead = { version = "0.5.2", default-features = false }
bitflags = { version = "2.6.0", features = ["serde"] }
byteorder = { version = "1.5.0", default-features = false }
generic-array = { version = "0.14.6", features = ["serde"] }
generic-array = { version = "0.14.7", features = ["serde"] }
heed-traits = { version = "0.20.0", path = "../heed-traits" }
heed-types = { version = "0.21.0", default-features = false, path = "../heed-types" }
libc = "0.2.155"
libc = "0.2.167"
lmdb-master3-sys = { version = "0.2.4", path = "../lmdb-master3-sys" }
once_cell = "1.19.0"
once_cell = "1.20.2"
page_size = "0.6.0"
serde = { version = "1.0.203", features = ["derive"], optional = true }
serde = { version = "1.0.215", features = ["derive"], optional = true }
synchronoise = "1.0.1"

[dev-dependencies]
# TODO update dependencies
argon2 = { version = "0.4.1", features = ["std"] }
serde = { version = "1.0.203", features = ["derive"] }
argon2 = { version = "0.5.3", features = ["std"] }
serde = { version = "1.0.215", features = ["derive"] }
chacha20poly1305 = "0.10.1"
tempfile = "3.10.1"
tempfile = "3.14.0"

[target.'cfg(windows)'.dependencies]
url = "2.5.2"
url = "2.5.4"

[features]
# The `serde` feature makes some types serializable,
Expand Down
2 changes: 1 addition & 1 deletion lmdb-master-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ doctest = false
libc = "0.2.167"

[build-dependencies]
bindgen = { version = "0.69.5", default-features = false, optional = true, features = ["runtime"] }
bindgen = { version = "0.70.1", default-features = false, optional = true, features = ["runtime"] }
cc = "1.2.2"
doxygen-rs = "0.4.2"

Expand Down
2 changes: 1 addition & 1 deletion lmdb-master3-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ doctest = false
libc = "0.2.167"

[build-dependencies]
bindgen = { version = "0.69.5", default-features = false, optional = true, features = ["runtime"] }
bindgen = { version = "0.70.1", default-features = false, optional = true, features = ["runtime"] }
cc = "1.2.2"
doxygen-rs = "0.4.2"

Expand Down

0 comments on commit f4e15f9

Please sign in to comment.