20 lines
755 B
TOML
20 lines
755 B
TOML
[package]
|
|
name = "torad"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.103"
|
|
clap = { version = "4.6.1", features = ["derive", "env"] }
|
|
librqbit = { version = "8.1.1", default-features = false, features = ["rust-tls", "http-api-client"] }
|
|
librqbit-core = { version = "5.0.0", default-features = false }
|
|
sqlx = { version = "0.9.0", features = ["postgres", "runtime-tokio", "tls-rustls", "uuid"] }
|
|
tokio = { version = "1.52.3", features = ["rt-multi-thread", "macros", "net", "signal"] }
|
|
tokio-stream = { version = "0.1.18", features = ["net"] }
|
|
tonic = "0.14.6"
|
|
tonic-health = "0.14.6"
|
|
tora-proto = { version = "0.1.0", path = "../proto" }
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = "0.3.23"
|
|
uuid = { version = "1.23.4", features = ["v4"] }
|