inventory-system/Cargo.toml
Jake Hillion 3a44c299f3
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
added mapped api response types
2022-07-25 13:42:45 +01:00

24 lines
584 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"
futures = "0.3.21"
async-std = "1"
async-trait = "0.1.56"
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"]}