Cargo.toml 764 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- coding: utf-8 -*-
  2. [package]
  3. edition = "2021"
  4. name = "movavg"
  5. description = "Generic Moving Average calculation"
  6. version = "2.3.0"
  7. authors = ["Michael Büsch <m@bues.ch>"]
  8. license = "MIT OR Apache-2.0"
  9. readme = "README.md"
  10. repository = "https://bues.ch/cgit/movavgrs.git"
  11. categories = ["algorithms", "no-std"]
  12. keywords = ["moving", "average"]
  13. build = "build.rs"
  14. [features]
  15. default = ["std"]
  16. std = []
  17. fastfloat = []
  18. [dependencies]
  19. [dependencies.num-traits]
  20. version = "0.2"
  21. default-features = false
  22. [build-dependencies]
  23. autocfg = "1"
  24. # vim: ts=4 sw=4 expandtab