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.

Cargo.toml 1.0KB

7 years ago
7 years ago
7 years ago
6 years ago
6 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "logging"
  3. version = "0.4.4"
  4. authors = ["Jonathan Strong <jstrong@legis.io>"]
  5. [[example]]
  6. name = "zmq-logger"
  7. path = "examples/zmq-logger.rs"
  8. required-features = ["warnings"]
  9. [[example]]
  10. name = "hist-interval"
  11. path = "examples/hist-interval.rs"
  12. [dependencies]
  13. zmq = "0.8"
  14. influent = "0.4"
  15. chrono = { version = "0.4", features = ["serde"] }
  16. hyper = "0.10"
  17. termion = "1.4.0"
  18. slog = "2.0.6"
  19. slog-term = "2"
  20. ordermap = "0.3"
  21. fnv = "1"
  22. uuid = { version = "0.6", features = ["serde", "v4", "nightly", "const_fn"] }
  23. hdrhistogram = "6"
  24. slog-async = "2"
  25. smallvec = "0.6"
  26. num = "0.1"
  27. sloggers = { path = "../sloggers" }
  28. decimal = { path = "../decimal", version = "2" }
  29. #windows = { path = "../windows", version = "0.2" }
  30. money = { path = "../money", version = "0.2" }
  31. pubsub = { path = "../pubsub" }
  32. [features]
  33. default = ["inlines"]
  34. no-thrash = []
  35. trace = []
  36. debug = []
  37. test = []
  38. localhost = []
  39. harrison = []
  40. washington = []
  41. scholes = []
  42. no-influx-buffer = []
  43. disable-short-uuid = []
  44. warnings = []
  45. inlines = []