ohlcv-ctl 0.0.2

Data collector library for fetching, analyzing, predicting and charting time series data (OHLC) of cryptocurrencies from various exchanges
Documentation
[[bin]]
name = "ohlcv-ctl"
path = "src/main.rs"

[dependencies.clap]
features = ["cargo"]
version = "4.5.11"

[dependencies.inquire]
version = "0.7.5"

[dependencies.ohlcv]
default-features = false
features = ["exchange"]
optional = true
version = "0.0.2"

[dependencies.serde]
features = ["derive"]
version = "1.0.208"

[dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1.39.2"

[dependencies.toml]
version = "0.8.16"

[dependencies.tracing]
features = ["release_max_level_info", "max_level_trace"]
version = "0.1.40"

[dependencies.tracing-subscriber]
version = "0.3.18"

[features]
default = ["mysql", "postgres", "sqlite"]
mysql = ["ohlcv/mysql"]
postgres = ["ohlcv/postgres"]
sqlite = ["ohlcv/sqlite"]

[lib]
name = "ohlcv_ctl"
path = "src/lib.rs"

[lints.clippy]
cargo = "warn"
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"

[package]
authors = ["TypedDuck <typedduck@posteo.net>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["command-line-utilities", "cryptography::cryptocurrencies", "finance"]
description = "Data collector library for fetching, analyzing, predicting and charting time series data (OHLC) of cryptocurrencies from various exchanges"
edition = "2021"
homepage = "https://github.com/typedduck/ohlc"
include = ["LICENSE-*", "README.md", "CHANGELOG.md", "Cargo.toml", "/src"]
keywords = ["cryptocurrency", "exchange", "finance", "ohlcv", "time-series"]
license = "MIT OR Apache-2.0"
name = "ohlcv-ctl"
readme = "README.md"
repository = "https://github.com/typedduck/ohlc"
version = "0.0.2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]