[package] name = "caesar-cli" version = "0.3.1" edition = "2021" authors = ["Manuel Keidel, Patryk Hegenberg, Krzysztof Stankiewicz"] [[bin]] name = "caesar" path = "src/main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] caesar-core = { path = "../caesar-core" } tokio = { version = "1.28.1", features = ["full"] } serde_json = { version = "1.0" } serde = { version = "1.0", features = ["derive"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } dotenv = { version = "0.15.0", features = ["clap", "cli"] } clap = { version = "4.5.4", features = ["derive"] } axum = { version = "0.7.5", features = ["ws"] } axum-client-ip = "0.6.0"