setup main project layout
Co-authored-by: Clément Rehs <clement.rehs@epita.fr>
This commit is contained in:
parent
a71a059feb
commit
b95003257d
12 changed files with 963 additions and 4 deletions
20
Cargo.toml
20
Cargo.toml
|
@ -2,7 +2,23 @@
|
|||
name = "harsh"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue