median-accumulator/Cargo.toml

29 lines
758 B
TOML
Raw Normal View History

2022-09-20 17:02:56 +00:00
[package]
name = "median-accumulator"
2023-04-14 10:39:11 +00:00
version = "0.2.0"
2022-09-20 17:02:56 +00:00
edition = "2021"
authors = ["tuxmain <tuxmain@zettascript.org>"]
license = "AGPL-3.0-only"
repository = "https://git.txmn.tk/tuxmain/median-accumulator"
documentation = "https://docs.rs/median-accumulator/"
description = "Simple, fast, space-efficient accumulator for computing median"
2023-04-14 10:39:11 +00:00
categories = ["algorithms", "data-structures", "no-std"]
2022-09-20 17:02:56 +00:00
[dependencies]
2023-04-14 10:39:11 +00:00
cc-traits = "1.0.0"
smallvec = { version = "^1.6", optional = true }
[features]
nostd = ["cc-traits/nostd"]
smallvec = ["dep:smallvec", "cc-traits/smallvec"]
2022-09-20 17:02:56 +00:00
[dev-dependencies]
criterion = { version = "0.4.0", features = ["html_reports"] }
medianheap = "0.3.0"
rand = "0.8.5"
2023-04-14 10:39:11 +00:00
smallvec = "^1.6"
2022-09-20 17:02:56 +00:00
[[bench]]
name = "comparison"
harness = false