# 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 = "moving_median" version = "0.2.0" authors = ["Rafael Koch "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A no-std moving median filter" documentation = "https://docs.rs/moving_median" readme = "README.md" keywords = [ "median", "filter", ] categories = [ "no-std", "embedded", ] license = "MIT" repository = "https://github.com/1-rafael-1/moving_median" [profile.dev] opt-level = 1 lto = "off" codegen-units = 1 debug = 2 debug-assertions = true overflow-checks = true incremental = false [profile.release] opt-level = "s" lto = "fat" codegen-units = 1 debug = 2 debug-assertions = false overflow-checks = false incremental = false [lib] name = "moving_median" path = "src/lib.rs" [dependencies]