2022-07-20 21:38:43 +01:00
|
|
|
[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]
|
2022-07-21 11:43:35 +01:00
|
|
|
log = "0.4"
|
2022-07-22 23:12:24 +01:00
|
|
|
thiserror = "1"
|
2022-07-21 11:43:35 +01:00
|
|
|
|
2022-07-24 21:58:13 +01:00
|
|
|
futures = "0.3.21"
|
2022-07-21 11:43:35 +01:00
|
|
|
async-std = "1"
|
2022-07-24 21:58:13 +01:00
|
|
|
async-trait = "0.1.56"
|
2022-07-21 11:43:35 +01:00
|
|
|
|
2022-07-23 18:26:45 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-07-25 13:19:23 +01:00
|
|
|
tide = "0.17.0-beta.1"
|
2022-07-23 18:26:45 +01:00
|
|
|
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"] }
|
2022-07-21 11:43:35 +01:00
|
|
|
|
|
|
|
rust-embed = { version = "6.2.0", features = ["interpolate-folder-path"]}
|