added support for a config file. under linux this will be under XDG_HOME/.config/caesar with name caesar.toml
25 lines
786 B
TOML
25 lines
786 B
TOML
[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"] }
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
|
axum = { version = "0.7.5", features = ["ws"] }
|
|
axum-client-ip = "0.6.0"
|
|
confy = "0.6.1"
|
|
dotenvy = { version = "0.15.7", features = ["clap", "cli"] }
|
|
lazy_static = "1.4.0"
|