recipes/api/Cargo.toml

14 lines
365 B
TOML
Raw Normal View History

2022-05-09 17:06:05 +03:00
[package]
name = "api"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-05-09 17:52:22 +03:00
db = { version = "0.1.0", path = "../db" }
2022-07-18 14:51:01 +03:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sonic-channel = { version = "1.0", features = ["ingest"] }
2022-05-09 17:06:05 +03:00
tiny_http = "0.11.0"