|
- [package]
- name = "data-pipelines"
- version = "0.1.0"
- authors = ["Jonathan Strong <jonathan.strong@gmail.com>"]
- edition = "2018"
-
- [[bin]]
- name = "csv"
- path = "src/csv.rs"
-
- [[bin]]
- name = "munge"
- path = "src/munge.rs"
-
- [[bin]]
- path = "src/time_explorer.rs"
- name = "time-explorer"
-
- [lib]
- path = "src/lib.rs"
- name = "pipelines"
-
- [dependencies]
- csv = "1.1"
- structopt = "0.3"
- serde = { version = "1", features = ["derive"] }
- serde_json = "1"
- markets = { version = "0.3.0", registry = "jstrong-dev" }
- slog = "2"
- slog-async = "2"
- slog-term = "2"
- pretty_toa = "1"
- atoi = "0.3"
- lexical = "5.2"
- chrono = { version = "0.4", features = ["serde"] }
- clap = "2"
- itertools-num = "0.1"
-
- [profile.release]
- lto = "fat"
- panic = "abort"
- incremental = false
- codegen-units = 1
-
- [features]
- default = []
- super-fast-csv-parsing = []
|