forked from lavina/lavina
22 lines
517 B
TOML
22 lines
517 B
TOML
[package]
|
|
name = "lavina"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "server"
|
|
|
|
[[bin]]
|
|
name = "client"
|
|
path = "src/client.rs"
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68" # error utils
|
|
figment = { version = "0.10.8", features = ["env", "toml"] } # configuration files
|
|
serde = { version = "1.0.152", features = ["rc", "serde_derive"] }
|
|
tokio = { version = "1.24.1", features = ["full"] } # async runtime
|
|
tracing = "0.1.37" # logging & tracing api
|
|
tracing-subscriber = "0.3.16"
|