Initial commit
This commit is contained in:
commit
dccfa2d4cf
19 changed files with 3156 additions and 0 deletions
23
rest/Cargo.toml
Normal file
23
rest/Cargo.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[package]
|
||||
name = "rest"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
axum = "0.7.5"
|
||||
bytes = "1.6.0"
|
||||
http-body = "1.0.0"
|
||||
serde = "1.0.198"
|
||||
|
||||
[dependencies.tokio]
|
||||
version = "1.37.0"
|
||||
features = ["full"]
|
||||
|
||||
[dependencies.service]
|
||||
path = "../service"
|
||||
|
||||
[dependencies.uuid]
|
||||
version = "1.8.0"
|
||||
features = ["v4", "serde"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue