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.

57 lines
1.4KB

  1. [package]
  2. name = "logging"
  3. version = "0.5.2"
  4. authors = ["Jonathan Strong <jonathan.strong@gmail.com>"]
  5. edition = "2018"
  6. [[example]]
  7. name = "hist-interval"
  8. path = "examples/hist-interval.rs"
  9. [dependencies]
  10. chrono = { version = "0.4", features = ["serde"] }
  11. hyper = "0.10"
  12. termion = "1.4.0"
  13. slog = "2.0.6"
  14. slog-term = "2"
  15. uuid = { version = "0.6", features = ["serde", "v4", "nightly", "const_fn"] }
  16. hdrhistogram = "6"
  17. slog-async = "2"
  18. smallvec = "0.6"
  19. num = "0.1"
  20. dirs = "1"
  21. crossbeam-channel = "0.3"
  22. pretty_toa = "1.0.0"
  23. sloggers = "0.3"
  24. #sloggers = { path = "../sloggers" }
  25. #decimal = { path = "../decimal", version = "2" }
  26. #decimal = { git = "https://github.com/jonathanstrong/decimal", branch = "v2.3.x" }
  27. decimal = { git = "https://github.com/jonathanstrong/decimal", branch = "v2.3.x" }
  28. decimal-macros = { git = "https://github.com/jonathanstrong/decimal", branch = "v2.3.x" }
  29. #windows = { path = "../windows", version = "0.2" }
  30. money = { path = "../money", version = "0.3" }
  31. pubsub = { path = "../pubsub", optional = true }
  32. [features]
  33. default = ["inlines"]
  34. no-thrash = []
  35. trace = ["slog/release_max_level_trace", "slog/max_level_trace"]
  36. debug = ["slog/release_max_level_debug", "slog/max_level_debug"]
  37. test = []
  38. localhost = []
  39. harrison = []
  40. washington = []
  41. scholes = []
  42. no-influx-buffer = []
  43. disable-short-uuid = []
  44. warnings = []
  45. inlines = []
  46. latency = ["pubsub"]
  47. string-tags = []
  48. [profile.bench]
  49. lto = true