rqbit/Cargo.toml

27 lines
479 B
TOML
Raw Normal View History

2021-06-25 13:47:51 +01:00
[package]
name = "rqbit"
version = "0.1.0"
authors = ["Igor Katson <igor.katson@gmail.com>"]
edition = "2018"
2021-07-01 19:17:44 +01:00
[features]
rt-single-thread = []
2021-06-25 13:47:51 +01:00
[dependencies]
librqbit = {path="./crates/librqbit"}
tokio = {version = "1", features = ["macros", "rt-multi-thread"]}
anyhow = "1"
clap = "3.0.0-beta.2"
log = "0.4"
pretty_env_logger = "0.4"
reqwest = "0.11"
2021-06-26 16:43:36 +01:00
regex = "1"
2021-06-25 13:47:51 +01:00
[dev-dependencies]
futures = {version = "0.3"}
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"