14 lines
392 B
TOML
14 lines
392 B
TOML
|
[package]
|
||
|
name = "server"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1.0.93"
|
||
|
askama = { version = "0.12.1", features = ["with-axum"] }
|
||
|
axum = { version = "0.7.9", features = ["http2", "macros", "ws"] }
|
||
|
futures = "0.3.31"
|
||
|
raft = { version = "0.7.0", default-features = false, features = ["prost-codec"] }
|
||
|
tokio = { version = "1.41.1", features = ["full"] }
|
||
|
turmoil = "0.6.4"
|