Skip to content

Commit

Permalink
better shared dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Sep 12, 2024
1 parent 0d5f56d commit b88f848
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@ pyo3-build-config = { version = "0.22.0" }
bencher = "0.1.5"
paste = "1.0.7"
codspeed-bencher-compat = "2.7.1"
smallvec = "2.0.0-alpha.7"
serde = "1.0.210"
serde_json = "1.0.128"
6 changes: 3 additions & 3 deletions crates/batson/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ repository = {workspace = true}
[dependencies]
bytemuck = { version = "1.17.1", features = ["aarch64_simd", "derive", "align_offset"] }
jiter = { workspace = true }
serde = "1.0.210"
serde_json = "1.0.128"
serde = { workspace = true }
serde_json = { workspace = true }
simdutf8 = { version = "0.1.4", features = ["aarch64_neon"] }
smallvec = "2.0.0-alpha.7"
smallvec = { workspace = true }

[dev-dependencies]
bencher = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/jiter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repository = { workspace = true }
num-bigint = { version = "0.4.4", optional = true }
num-traits = "0.2.16"
ahash = "0.8.0"
smallvec = "2.0.0-alpha.7"
smallvec = { workspace = true }
pyo3 = { workspace = true, optional = true, features = ["num-bigint"] }
lexical-parse-float = { version = "0.8.5", features = ["format"] }
bitvec = "1.0.1"
Expand All @@ -29,8 +29,8 @@ num-bigint = ["dep:num-bigint", "pyo3/num-bigint"]
bencher = { workspace = true }
paste = { workspace = true }
codspeed-bencher-compat = { workspace = true }
serde_json = {version = "1.0.87", features = ["preserve_order", "arbitrary_precision", "float_roundtrip"]}
serde = "1.0.147"
serde_json = { workspace = true, features = ["preserve_order", "arbitrary_precision", "float_roundtrip"]}
serde = { workspace = true }
pyo3 = { workspace = true, features = ["auto-initialize"] }

[build-dependencies]
Expand Down

0 comments on commit b88f848

Please sign in to comment.