[package]
edition = "2021"
name = "ohlcv-ctl"
version = "0.0.3"
authors = ["TypedDuck <typedduck@posteo.net>"]
build = false
include = [
"LICENSE-*",
"README.md",
"CHANGELOG.md",
"Cargo.toml",
"/src",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Data collector library for fetching, analyzing, predicting and charting time series data (OHLC) of cryptocurrencies from various exchanges"
homepage = "https://github.com/typedduck/ohlcv"
readme = "README.md"
keywords = [
"cryptocurrency",
"exchange",
"finance",
"ohlcv",
"time-series",
]
categories = [
"command-line-utilities",
"cryptography::cryptocurrencies",
"finance",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/typedduck/ohlcv"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "ohlcv_ctl"
path = "src/lib.rs"
[[bin]]
name = "ohlcv-ctl"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.11"
features = ["cargo"]
[dependencies.inquire]
version = "0.7.5"
[dependencies.ohlcv]
version = "0.0.3"
features = ["exchange"]
optional = true
default-features = false
[dependencies.serde]
version = "1.0.208"
features = ["derive"]
[dependencies.tokio]
version = "1.39.2"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.toml]
version = "0.8.16"
[dependencies.tracing]
version = "0.1.40"
features = [
"release_max_level_info",
"max_level_trace",
]
[dependencies.tracing-subscriber]
version = "0.3.18"
[features]
default = [
"mysql",
"postgres",
"sqlite",
]
mysql = ["ohlcv/mysql"]
postgres = ["ohlcv/postgres"]
sqlite = ["ohlcv/sqlite"]
[lints.clippy]
cargo = "warn"
complexity = "warn"
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"
suspicious = "warn"