# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "median-accumulator" version = "0.4.0" authors = ["tuxmain "] description = "Simple, fast, space-efficient, generic accumulator for computing median" documentation = "https://docs.rs/median-accumulator/" readme = "README.md" keywords = ["median"] categories = [ "algorithms", "data-structures", "no-std", ] license = "AGPL-3.0-only" repository = "https://git.txmn.tk/tuxmain/median-accumulator" [package.metadata.docs.rs] features = ["std"] [[bench]] name = "comparison" harness = false [dependencies.cc-traits] version = "2.0.0" default_features = false [dependencies.smallvec] version = "^1.6" optional = true [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"] [dev-dependencies.medianheap] version = "0.4.1" [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.smallvec] version = "^1.6" [features] default = ["std"] smallvec = [ "dep:smallvec", "cc-traits/smallvec", ] std = [ "cc-traits/alloc", "cc-traits/std", ]