[[bin]] name = "crypto-candlesticks-rust" [[test]] name = "crypto-candlesticks-rust-test" path = "./test/test_config.rs" [package] authors = ["Pedro Torres "] categories = ["command-line-utilities", "cryptography::cryptocurrencies"] description = "Download candlestick data fast & easy for analysis" documentation = "https://docs.rs/crate/crypto-candlesticks-rust/" edition = "2021" exclude = [ "examples/", "hex/", "media/crypto-candlestick-rust.mp4", "media/crypto-candlestick-rust.png", "scripts/", ".github", ] keywords = ["cryptocurrency", "candlesticks", "download", "data", "ohlc"] license = "GPL-3.0-or-later" name = "crypto-candlesticks-rust" readme = "README.md" repository = "https://github.com/Corfucinas/crypto-candlesticks-rust" version = "0.1.5" [profile.release] codegen-units = 1 lto = true opt-level = 'z' # Optimize for size. panic = "abort" [dependencies] chrono = "0.4.19" clap = { version = "3.0.0-rc.7", features = ["env"] } colorful = "0.2.1" comfy-table = "5.0.0" reqwest = { version = "0.11.7", features = ["blocking", "json"] } rusqlite = { version = "0.26.3", features = ["bundled"] } serde = { version = "1.0.132", features = ["derive"] } simple_excel_writer = "0.1.9"