You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
830B

  1. [package]
  2. name = "influx-writer"
  3. version = "0.6.0"
  4. authors = ["Jonathan Strong <jonathan.strong@gmail.com>"]
  5. edition = "2018"
  6. [lib]
  7. name = "influx_writer"
  8. path = "src/lib.rs"
  9. [dependencies]
  10. chrono = { version = "0.4", features = ["serde"] }
  11. hyper = "0.10"
  12. slog = "2"
  13. slog-term = "2"
  14. uuid = { version = "0.8", features = ["serde", "v4", "slog"] }
  15. slog-async = "2"
  16. smallvec = "0.6"
  17. crossbeam-channel = "0.3"
  18. pretty_toa = "1.0.0"
  19. decimal = { git = "https://github.com/jonathanstrong/decimal", branch = "v2.3.x" }
  20. decimal-macros = { git = "https://github.com/jonathanstrong/decimal", branch = "v2.3.x" }
  21. [features]
  22. default = ["string-tags"]
  23. trace = ["slog/release_max_level_trace", "slog/max_level_trace"]
  24. debug = ["slog/release_max_level_debug", "slog/max_level_debug"]
  25. string-tags = []
  26. unstable = []
  27. [profile.bench]
  28. lto = true