Skip to content

Commit

Permalink
Merge pull request #265 from meilisearch/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
Kerollmops authored Jul 2, 2024
2 parents 769c757 + 4f40dd7 commit b9b2385
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions heed-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ edition = "2021"

[dependencies]
bincode = { version = "1.3.3", optional = true }
byteorder = "1.4.3"
byteorder = "1.5.0"
heed-traits = { version = "0.20.0", path = "../heed-traits" }
serde = { version = "1.0.151", optional = true }
serde_json = { version = "1.0.91", optional = true }
rmp-serde = { version = "1.1.2", optional = true }
serde = { version = "1.0.203", optional = true }
serde_json = { version = "1.0.120", optional = true }
rmp-serde = { version = "1.3.0", optional = true }

[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
@@ -1,6 +1,6 @@
[package]
name = "heed"
version = "0.20.2"
version = "0.20.3"
authors = ["Kerollmops <[email protected]>"]
description = "A fully typed LMDB wrapper with minimum overhead"
license = "MIT"
Expand All @@ -11,23 +11,23 @@ readme = "../README.md"
edition = "2021"

[dependencies]
bitflags = { version = "2.3.3", features = ["serde"] }
byteorder = { version = "1.4.3", default-features = false }
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.20.0", default-features = false, path = "../heed-types" }
libc = "0.2.139"
libc = "0.2.155"
lmdb-master-sys = { version = "0.2.1", path = "../lmdb-master-sys" }
once_cell = "1.16.0"
once_cell = "1.19.0"
page_size = "0.6.0"
serde = { version = "1.0.151", features = ["derive"], optional = true }
serde = { version = "1.0.203", features = ["derive"], optional = true }
synchronoise = "1.0.1"

[dev-dependencies]
serde = { version = "1.0.151", features = ["derive"] }
tempfile = "3.3.0"
serde = { version = "1.0.203", features = ["derive"] }
tempfile = "3.10.1"

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

[features]
# The `serde` feature makes some types serializable,
Expand Down
8 changes: 4 additions & 4 deletions lmdb-master-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ name = "lmdb_master_sys"
doctest = false

[dependencies]
libc = "0.2.139"
libc = "0.2.155"

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

[dev-dependencies]
cstr = "0.2.11"
cstr = "0.2.12"

[features]
default = []
Expand Down

0 comments on commit b9b2385

Please sign in to comment.