Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
7 changes: 6 additions & 1 deletion ext/crates/fp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aligned-vec = "0.6.4"
build_const = "0.2.2"
byteorder = "1.5.0"
cfg-if = "1.0.1"
dashmap = "6"
either = "1.15.0"
itertools = { version = "0.14.0" }
paste = "1.0.15"
proptest = { version = "1.7", optional = true }
Expand All @@ -18,7 +20,6 @@ serde_json = "1.0.141"

maybe-rayon = { path = "../maybe-rayon" }
query = { path = "../query" }
either = "1.15.0"

[dev-dependencies]
# We use the proptest harness for our own tests
Expand All @@ -38,6 +39,10 @@ default = ["odd-primes"]
concurrent = ["maybe-rayon/concurrent"]
odd-primes = []

[[bench]]
name = "mul"
harness = false

[[bench]]
name = "reduce"
harness = false
Expand Down
Loading