# 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 = "remedian" version = "0.1.0" authors = ["Rose Peck"] build = false exclude = ["test_data/*"] autobins = false autoexamples = false autotests = false autobenches = false description = " A Rust implementation of The Remedian" readme = "README.md" keywords = [ "median", "statistics", ] license = "MIT OR Apache-2.0" repository = "https://github.com/sixfold-origami/remedian" [profile.release] lto = "fat" codegen-units = 1 [lib] name = "remedian" path = "src/lib.rs" [[example]] name = "custom_data" path = "examples/custom_data.rs" [[example]] name = "full" path = "examples/full.rs" [[example]] name = "minimal" path = "examples/minimal.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false [dependencies.log] version = "0.4.22" optional = true [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [features] default = ["logging"] logging = ["log"]