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.

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