Skip to content

Commit

Permalink
uprade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
PSeitz committed Apr 4, 2024
1 parent 4e79e11 commit 959625d
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 47 deletions.
70 changes: 35 additions & 35 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,42 +15,42 @@ rust-version = "1.62"
exclude = ["benches/*.json", "benches/*.txt"]

[dependencies]
oneshot = "0.1.5"
oneshot = "0.1.6"
base64 = "0.22.0"
byteorder = "1.4.3"
crc32fast = "1.3.2"
once_cell = "1.10.0"
regex = { version = "1.5.5", default-features = false, features = ["std", "unicode"] }
aho-corasick = "1.0"
byteorder = "1.5.0"
crc32fast = "1.4.0"
once_cell = "1.19.0"
regex = { version = "1.9.6", default-features = false, features = ["std", "unicode"] }
aho-corasick = "1.1"
tantivy-fst = "0.5"
memmap2 = { version = "0.9.0", optional = true }
memmap2 = { version = "0.9.4", optional = true }
lz4_flex = { version = "0.11", default-features = false, optional = true }
zstd = { version = "0.13", optional = true, default-features = false }
tempfile = { version = "3.3.0", optional = true }
log = "0.4.16"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
num_cpus = "1.13.1"
fs4 = { version = "0.8.0", optional = true }
zstd = { version = "0.12", optional = true, default-features = false }
tempfile = { version = "3.6.0", optional = true }
log = "0.4.21"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
num_cpus = "1.16.0"
fs4 = { version = "0.8.2", optional = true }
levenshtein_automata = "0.2.1"
uuid = { version = "1.0.0", features = ["v4", "serde"] }
crossbeam-channel = "0.5.4"
uuid = { version = "1.8.0", features = ["v4", "serde"] }
crossbeam-channel = "0.5.12"
rust-stemmers = "1.2.0"
downcast-rs = "1.2.0"
bitpacking = { version = "0.9.2", default-features = false, features = ["bitpacker4x"] }
census = "0.4.2"
rustc-hash = "1.1.0"
thiserror = "1.0.30"
thiserror = "1.0.58"
htmlescape = "0.3.1"
fail = { version = "0.5.0", optional = true }
time = { version = "0.3.10", features = ["serde-well-known"] }
smallvec = "1.8.0"
rayon = "1.5.2"
lru = "0.12.0"
fastdivide = "0.4.0"
itertools = "0.12.0"
fail = { version = "0.5.1", optional = true }
time = { version = "0.3.19", features = ["serde-well-known"] }
smallvec = "1.13.2"
rayon = "1.7.0"
lru = "0.12.3"
fastdivide = "0.4.1"
itertools = "0.12.1"
measure_time = "0.8.2"
arc-swap = "1.5.0"
arc-swap = "1.7.1"

columnar = { version= "0.2", path="./columnar", package ="tantivy-columnar" }
sstable = { version= "0.2", path="./sstable", package ="tantivy-sstable", optional = true }
Expand All @@ -59,8 +59,8 @@ query-grammar = { version= "0.21.0", path="./query-grammar", package = "tantivy-
tantivy-bitpacker = { version= "0.5", path="./bitpacker" }
common = { version= "0.6", path = "./common/", package = "tantivy-common" }
tokenizer-api = { version= "0.2", path="./tokenizer-api", package="tantivy-tokenizer-api" }
sketches-ddsketch = { version = "0.2.1", features = ["use_serde"] }
futures-util = { version = "0.3.28", optional = true }
sketches-ddsketch = { version = "0.2.2", features = ["use_serde"] }
futures-util = { version = "0.3.30", optional = true }
fnv = "1.0.7"

[target.'cfg(windows)'.dependencies]
Expand All @@ -69,21 +69,21 @@ winapi = "0.3.9"
[dev-dependencies]
rand = "0.8.5"
maplit = "1.0.2"
matches = "0.1.9"
pretty_assertions = "1.2.1"
proptest = "1.0.0"
test-log = "0.2.10"
futures = "0.3.21"
paste = "1.0.11"
matches = "0.1.10"
pretty_assertions = "1.4.0"
proptest = "1.2.0"
test-log = "0.2.14"
futures = "0.3.30"
paste = "1.0.14"
more-asserts = "0.3.1"
rand_distr = "0.4.3"
time = { version = "0.3.10", features = ["serde-well-known", "macros"] }
time = { version = "0.3.19", features = ["serde-well-known", "macros"] }

[target.'cfg(not(windows))'.dev-dependencies]
criterion = { version = "0.5", default-features = false }

[dev-dependencies.fail]
version = "0.5.0"
version = "0.5.1"
features = ["failpoints"]

[profile.release]
Expand Down
6 changes: 3 additions & 3 deletions columnar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ description = "column oriented storage for tantivy"
categories = ["database-implementations", "data-structures", "compression"]

[dependencies]
itertools = "0.12.0"
fastdivide = "0.4.0"
itertools = "0.12.1"
fastdivide = "0.4.1"

stacker = { version= "0.2", path = "../stacker", package="tantivy-stacker"}
sstable = { version= "0.2", path = "../sstable", package = "tantivy-sstable" }
common = { version= "0.6", path = "../common", package = "tantivy-common" }
tantivy-bitpacker = { version= "0.5", path = "../bitpacker/" }
serde = "1.0.152"
serde = "1.0.197"
downcast-rs = "1.2.0"

[dev-dependencies]
Expand Down
10 changes: 5 additions & 5 deletions common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ repository = "https://github.com/quickwit-oss/tantivy"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
byteorder = "1.4.3"
byteorder = "1.5.0"
ownedbytes = { version= "0.6", path="../ownedbytes" }
async-trait = "0.1"
time = { version = "0.3.10", features = ["serde-well-known"] }
serde = { version = "1.0.136", features = ["derive"] }
time = { version = "0.3.34", features = ["serde-well-known"] }
serde = { version = "1.0.197", features = ["derive"] }

[dev-dependencies]
proptest = "1.0.0"
rand = "0.8.4"
proptest = "1.4.0"
rand = "0.8.5"
6 changes: 3 additions & 3 deletions stacker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "term hashmap used for indexing"
[dependencies]
murmurhash32 = "0.3"
common = { version = "0.6", path = "../common/", package = "tantivy-common" }
ahash = { version = "0.8.3", default-features = false, optional = true }
ahash = { version = "0.8.11", default-features = false, optional = true }
rand_distr = "0.4.3"

[[bench]]
Expand All @@ -24,10 +24,10 @@ path = "example/hashmap.rs"

[dev-dependencies]
rand = "0.8.5"
zipf = "7.0.0"
zipf = "7.0.1"
criterion = { git = "https://github.com/PSeitz/criterion.rs/", rev = "e6f98ee"} # This fork includes stack randomization to reduce caching effects
rustc-hash = "1.1.0"
proptest = "1.2.0"
proptest = "1.4.0"

[features]
compare_hash_only = ["ahash"] # Compare hash only, not the key in the Hashmap
Expand Down
2 changes: 1 addition & 1 deletion tokenizer-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ repository = "https://github.com/quickwit-oss/tantivy"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.152", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }

0 comments on commit 959625d

Please sign in to comment.