harsh/Cargo.toml
Jolimaitre Matthieu b95003257d setup main project layout
Co-authored-by: Clément Rehs <clement.rehs@epita.fr>
2021-11-11 20:28:45 +01:00

24 lines
387 B
TOML

[package]
name = "harsh"
version = "0.1.0"
edition = "2018"
description = "Harmony server application"
[dependencies]
# async engine
tokio = { version = "1.0", features = ["full"] }
# http client
axum = "0.3.2"
# database
sled = "0.34.7"
# serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68"
# useful for logging
chrono = "0.4"
colored = "2.0.0"