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.

59 lines
1.3KB

  1. [package]
  2. name = "logging"
  3. version = "0.5.1"
  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. #windows = { path = "../windows", version = "0.2" }
  35. money = { path = "../money", version = "0.3" }
  36. pubsub = { path = "../pubsub", optional = true }
  37. [features]
  38. default = ["inlines"]
  39. no-thrash = []
  40. trace = ["slog/release_max_level_trace", "slog/max_level_trace"]
  41. debug = ["slog/release_max_level_debug", "slog/max_level_debug"]
  42. test = []
  43. localhost = []
  44. harrison = []
  45. washington = []
  46. scholes = []
  47. no-influx-buffer = []
  48. disable-short-uuid = []
  49. warnings = []
  50. inlines = []
  51. latency = ["pubsub"]