[package]
name = "btconsole"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
btlib = { path = "../btlib" }
btconsole-client = { path = "../btconsole-client", default-features=false }
yew = { version="0.20", default-features=false, features=["ssr"] }
hyper = { version = "0.14.26", features = ["server", "tcp", "http1", "http2", "runtime"] }
tokio = { version = "1.23.0", features = ["macros", "rt"] }
tower-http = { version = "0.4.0", features = ["fs"] }
bytes = { version = "1.4.0", features = ["std"] }
anyhow = { version = "1.0.66", features = ["std", "backtrace"] }
tower = { version = "0.4", features = ["util"] }
axum = "0.6.18"
futures = "0.3.25"
log = "0.4.17"
regex = "1.8.1"
serde = { version = "^1.0.136", features = ["derive"] }
env_logger = { version = "0.9.0", optional = true }
ctrlc = { version = "3.3.0", optional = true }