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.1KB

7 years ago
6 years ago
7 years ago
7 years ago
7 years ago
6 years ago
6 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [package]
  2. name = "logging"
  3. version = "0.4.5"
  4. authors = ["Jonathan Strong <jonathan.strong@gmail.com>"]
  5. [[example]]
  6. name = "zmq-logger"
  7. path = "examples/zmq-logger.rs"
  8. required-features = ["warnings", "zmq"]
  9. [[example]]
  10. name = "hist-interval"
  11. path = "examples/hist-interval.rs"
  12. [dependencies]
  13. zmq = { version = "0.8", optional = true }
  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. dirs = "1"
  28. sloggers = { path = "../sloggers" }
  29. decimal = { path = "../decimal", version = "2" }
  30. #windows = { path = "../windows", version = "0.2" }
  31. money = { path = "../money", version = "0.3" }
  32. pubsub = { path = "../pubsub" }
  33. [features]
  34. default = ["inlines"]
  35. no-thrash = []
  36. trace = []
  37. debug = []
  38. test = []
  39. localhost = []
  40. harrison = []
  41. washington = []
  42. scholes = []
  43. no-influx-buffer = []
  44. disable-short-uuid = []
  45. warnings = []
  46. inlines = []