16 lines
450 B
TOML
16 lines
450 B
TOML
|
[package]
|
||
|
name = "manager"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
||
|
rtss_log = { path = "../crates/rtss_log" }
|
||
|
rtss_api = { path = "crates/rtss_api" }
|
||
|
rtss_db = { path = "../crates/rtss_db" }
|
||
|
serde = { workspace = true }
|
||
|
config = { workspace = true }
|
||
|
clap = { workspace = true, features = ["derive"] }
|
||
|
enum_dispatch = { workspace = true }
|
||
|
anyhow = { workspace = true }
|