15 lines
360 B
TOML
15 lines
360 B
TOML
[package]
|
|
name = "simple_live_chat"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
once_cell = "1.8.0"
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
sled = "0.34.6"
|
|
tokio = { version = "1.9.0", features = ["full"] }
|
|
warp = "0.3.1"
|