lila-chat/Cargo.toml

27 lines
912 B
TOML
Raw Normal View History

[package]
name = "lila-chat"
description = "A basic chat server written in rust"
version = "0.6.1"
documentation = "https://git.lavender.software/erin/lila-chat/wiki"
repository = "https://git.lavender.software/erin/lila-chat/"
license = "CNPLv6+"
authors = ["Erin Nova <erin@the-system.eu.org>", "Charlotte"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "0.4.10", features = ["private-cookies"] }
serde = { version = "1.0.126", features = ["derive"] }
2021-07-16 17:38:05 +00:00
serde_json = "1.0"
sha1 = "0.6.0"
uuid = { version = "0.8.1", features = ["serde", "v4"] }
log = "0.4.0"
env_logger = "0.8.4"
chrono = { version = "0.4.11", features = ["serde"] }
2021-07-18 17:16:00 +00:00
rocket_contrib = { version = "0.4.10", default-features = false, features = ["json", "serve"] }
2021-07-18 15:37:11 +00:00
once_cell = "1.8.0"
2021-07-18 18:11:54 +00:00
random-string = "1.0"
2021-07-20 15:08:43 +00:00
sled = "0.34.6"
2021-07-22 15:01:07 +00:00
bincode = "1.3.3"