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.

48 lines
805B

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