Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies #295

Merged
merged 3 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
4 changes: 2 additions & 2 deletions heed-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ edition = "2021"
bincode = { version = "1.3.3", optional = true }
byteorder = "1.5.0"
heed-traits = { version = "0.20.0", path = "../heed-traits" }
serde = { version = "1.0.203", optional = true }
serde_json = { version = "1.0.120", optional = true }
serde = { version = "1.0.215", optional = true }
serde_json = { version = "1.0.133", optional = true }
rmp-serde = { version = "1.3.0", optional = true }

[features]
Expand Down
12 changes: 6 additions & 6 deletions heed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ bitflags = { version = "2.6.0", features = ["serde"] }
byteorder = { version = "1.5.0", default-features = false }
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-master-sys = { version = "0.2.4", path = "../lmdb-master-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]
serde = { version = "1.0.203", features = ["derive"] }
tempfile = "3.10.1"
serde = { version = "1.0.215", features = ["derive"] }
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
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
6 changes: 3 additions & 3 deletions lmdb-master-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ name = "lmdb_master_sys"
doctest = false

[dependencies]
libc = "0.2.155"
libc = "0.2.167"

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

[dev-dependencies]
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 @@ -24,11 +24,11 @@ name = "lmdb_master3_sys"
doctest = false

[dependencies]
libc = "0.2.155"
libc = "0.2.167"

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

[dev-dependencies]
Expand Down
Loading