Skip to content

Commit

Permalink
Merge pull request #263 from julep-ai/v/upgrade-deps
Browse files Browse the repository at this point in the history
deps: Upgrade dependencies
  • Loading branch information
zh217 committed May 9, 2024
2 parents eb43679 + cb6885b commit 68d12fb
Show file tree
Hide file tree
Showing 9 changed files with 764 additions and 711 deletions.
1,331 changes: 692 additions & 639 deletions Cargo.lock

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions cozo-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,26 +43,26 @@ storage-tikv = ["cozo/storage-tikv"]

[dependencies]
cozo = { version = "0.7.6", path = "../cozo-core", default-features = false }
clap = { version = "4.0.26", features = ["derive"] }
env_logger = "0.10.0"
log = "0.4.17"
clap = { version = "4.5.4", features = ["derive"] }
env_logger = "0.11.3"
log = "0.4.21"
rand = "0.8.5"
serde_derive = "1.0.137"
serde = { version = "1.0.137" }
chrono = "0.4.19"
serde_json = "1.0.81"
serde_derive = "1.0.199"
serde = { version = "1.0.199" }
chrono = "0.4.38"
serde_json = "1.0.116"
prettytable = "0.10.0"
rustyline = "12.0.0"
minreq = { version = "2.6.0", features = ["https-rustls"] }
miette = { version = "5.5.0", features = ["fancy"] }
ctrlc = "3.2.4"
axum = "0.7.1"
axum-macros = "0.4.0"
itertools = "0.12.0"
tokio = { version = "1.24.1", features = ["full"] }
async-stream = "0.3.3"
futures = "0.3.25"
crossbeam = "0.8.2"
eventsource-client = "0.12.0"
tower-http = { version = "0.5.0", features = ["full"] }
rayon = "1.8.0"
rustyline = "14.0.0"
minreq = { version = "2.11.2", features = ["https-rustls"] }
miette = { version = "5.10.0", features = ["fancy"] }
ctrlc = "3.4.4"
axum = "0.7.5"
axum-macros = "0.4.1"
itertools = "0.12.1"
tokio = { version = "1.37.0", features = ["full"] }
async-stream = "0.3.5"
futures = "0.3.30"
crossbeam = "0.8.4"
eventsource-client = "0.12.2"
tower-http = { version = "0.5.2", features = ["full"] }
rayon = "1.10.0"
78 changes: 39 additions & 39 deletions cozo-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,58 +84,58 @@ storage-tikv = ["dep:tikv-client", "dep:tokio"]

[dependencies]
casey = "0.4.0"
either = "1.7.0"
either = "1.11.0"
rand = "0.8.5"
miette = { version = "5.5.0", features = ["fancy"] }
miette = { version = "5.10.0", features = ["fancy"] }
lazy_static = "1.4.0"
log = "0.4.17"
env_logger = "0.10.0"
smallvec = { version = "1.8.1", features = ["serde", "write", "union", "const_generics", "const_new"] }
log = "0.4.21"
env_logger = "0.11.3"
smallvec = { version = "1.13.2", features = ["serde", "write", "union", "const_generics", "const_new"] }
smartstring = { version = "1.0.1", features = ["serde"] }
serde_json = "1.0.81"
serde = { version = "1.0.137" }
serde_derive = "1.0.137"
serde_bytes = "0.11.7"
rmp = "0.8.11"
rmp-serde = "1.1.0"
rmpv = "1.0.0"
base64 = "0.21.0"
chrono = "0.4.19"
chrono-tz = "0.8.0"
priority-queue = "1.2.3"
ordered-float = "4.1.1"
byteorder = "1.4.3"
num-traits = "0.2.15"
itertools = "0.12.0"
regex = "1.6.0"
pest = "2.2.1"
pest_derive = "2.2.1"
serde_json = "1.0.116"
serde = { version = "1.0.199" }
serde_derive = "1.0.199"
serde_bytes = "0.11.14"
rmp = "0.8.14"
rmp-serde = "1.2.0"
rmpv = "1.0.2"
base64 = "0.22.0"
chrono = "0.4.38"
chrono-tz = "0.9.0"
priority-queue = "1.4.0"
ordered-float = "4.2.0"
byteorder = "1.5.0"
num-traits = "0.2.18"
itertools = "0.12.1"
regex = "1.10.4"
pest = "2.7.9"
pest_derive = "2.7.9"
approx = "0.5.1"
unicode-normalization = "0.1.21"
thiserror = "1.0.34"
uuid = { version = "1.1.2", features = ["v1", "v4", "serde"] }
csv = "1.1.6"
document-features = "0.2.6"
rayon = { version = "1.5.3", optional = true }
minreq = { version = "2.6.0", features = ["https-rustls"], optional = true }
unicode-normalization = "0.1.23"
thiserror = "1.0.59"
uuid = { version = "1.8.0", features = ["v1", "v4", "serde"] }
csv = "1.3.0"
document-features = "0.2.8"
rayon = { version = "1.10.0", optional = true }
minreq = { version = "2.11.2", features = ["https-rustls"], optional = true }
tikv-jemallocator-global = { version = "0.5.0", optional = true }
cozorocks = { path = "../cozorocks", version = "0.1.7", optional = true }
sled = { version = "0.34.7", optional = true }
tikv-client = { version = "0.3.0", optional = true }
tokio = { version = "1.21.2", optional = true }
sqlite = { version = "0.32.0", optional = true }
sqlite3-src = { version = "0.5.1", optional = true }
tokio = { version = "1.37.0", optional = true }
sqlite = { version = "0.36.0", optional = true }
sqlite3-src = { version = "0.6.1", optional = true }
js-sys = { version = "0.3.60", optional = true }
graph = { version = "0.3.0", optional = true }
crossbeam = "0.8.2"
graph = { version = "0.3.1", optional = true }
crossbeam = "0.8.4"
ndarray = { version = "0.15.6", features = ["serde"] }
sha2 = "0.10.6"
sha2 = "0.10.8"
rustc-hash = "1.1.0"
twox-hash = "1.6.3"
quadrature = "0.1.2"
# For the FTS feature
jieba-rs = "0.6.7"
aho-corasick = "1.0.1"
jieba-rs = "0.7.0"
aho-corasick = "1.1.3"
rust-stemmers = "1.2.0"
fast2s = "0.3.1"
swapvec = "0.3.0"
swapvec = "0.3.0"
2 changes: 1 addition & 1 deletion cozo-lib-java/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ io-uring = ["cozo/io-uring"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
jni = "0.21.0"
jni = "0.21.1"
# , features = ["compact"]
cozo = { version = "0.7.6", path = "../cozo-core", default_features = false, features = ["compact"] }
lazy_static = "1.4.0"
8 changes: 4 additions & 4 deletions cozo-lib-nodejs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ io-uring = ["cozo/io-uring"]
[dependencies]
cozo = { version = "0.7.6", path = "../cozo-core", default-features = false }
lazy_static = "1.4.0"
crossbeam = "0.8.2"
miette = "5.5.0"
serde_json = "1.0.96"
rayon = "1.8.0"
crossbeam = "0.8.4"
miette = "5.10.0"
serde_json = "1.0.116"
rayon = "1.10.0"

[dependencies.neon]
version = "0.10"
Expand Down
8 changes: 4 additions & 4 deletions cozo-lib-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ io-uring = ["cozo/io-uring"]

[dependencies]
cozo = { version = "0.7.6", path = "../cozo-core", default-features = false }
pyo3 = { version = "0.20.0", features = ["extension-module", "abi3", "abi3-py37"] }
miette = "5.5.0"
serde_json = "1.0.96"
rayon = "1.8.0"
pyo3 = { version = "0.21.2", features = ["extension-module", "abi3", "abi3-py37"] }
miette = "5.10.0"
serde_json = "1.0.116"
rayon = "1.10.0"
2 changes: 1 addition & 1 deletion cozo-lib-swift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ swift-bridge-build = "0.1.41"

[dependencies]
cozo = { version = "0.7.6", path = "../cozo-core", default-features = false }
swift-bridge = "0.1.41"
swift-bridge = "0.1.53"
2 changes: 1 addition & 1 deletion cozo-lib-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ crate-type = ["cdylib", "rlib"]
default = ["console_error_panic_hook"]

[dependencies]
wasm-bindgen = "0.2.63"
wasm-bindgen = "0.2.92"
cozo = { version = "0.7.6", path = "../cozo-core", default-features = false, features = ["wasm"] }

# The `console_error_panic_hook` crate provides better debugging of panics by
Expand Down
2 changes: 1 addition & 1 deletion cozorocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exclude = ["rocksdb/docs", "rocksdb/java"]

[dependencies]
cxx = "1.0.69"
miette = "5.5.0"
miette = "5.10.0"
libc = "0.2"
tikv-jemalloc-sys = { version = "0.5", features = ["unprefixed_malloc_on_supported_platforms"], optional = true }
lz4-sys = { version = "1.9" }
Expand Down

0 comments on commit 68d12fb

Please sign in to comment.