inventory-system/Cargo.toml

22 lines
542 B
TOML

[package]
name = "inventory-system"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
thiserror = "1"
async-std = "1"
serde = { version = "1.0", features = ["derive"] }
tide = "0.17.0-beta.1"
diesel = { version = "2.0.0-rc.1", features = ["postgres", "r2d2", "uuid"] }
diesel_migrations = "2.0.0-rc.1"
uuid = { version = "1.1.2", features = ["serde"] }
rust-embed = { version = "6.2.0", features = ["interpolate-folder-path"]}