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.

60 lines
1002B

  1. [package]
  2. name = "data-pipelines"
  3. version = "0.2.0"
  4. authors = ["Jonathan Strong <jonathan.strong@gmail.com>"]
  5. edition = "2018"
  6. [[bin]]
  7. name = "binary-serialization"
  8. path = "src/binary-serialization.rs"
  9. [[bin]]
  10. name = "csv"
  11. path = "src/csv.rs"
  12. [[bin]]
  13. name = "munge"
  14. path = "src/munge.rs"
  15. [[bin]]
  16. path = "src/time_explorer.rs"
  17. name = "time-explorer"
  18. [lib]
  19. path = "src/lib.rs"
  20. name = "pipelines"
  21. [dependencies]
  22. csv = "1.1"
  23. structopt = "0.3"
  24. serde = { version = "1", features = ["derive"] }
  25. serde_json = "1"
  26. markets = { version = "0.4.0", registry = "fast-data-pipelines" }
  27. slog = "2"
  28. slog-async = "2"
  29. slog-term = "2"
  30. pretty_toa = "1"
  31. atoi = "0.3"
  32. lexical = "5.2"
  33. itoa = "0.4.5"
  34. dtoa = "0.4.5"
  35. chrono = { version = "0.4", features = ["serde"] }
  36. clap = "2"
  37. itertools-num = "0.1"
  38. bincode = "1.2"
  39. postcard = "0.5"
  40. memmap = "0.7"
  41. [dev-dependencies]
  42. approx = "0.3"
  43. [profile.release]
  44. lto = "fat"
  45. panic = "abort"
  46. incremental = false
  47. codegen-units = 1
  48. [features]
  49. default = []
  50. super-fast-csv-parsing = []