inventory-system/Cargo.toml
Jake Hillion 69d81446cb
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
added diesel connection
2022-07-23 12:24:57 +01:00

20 lines
429 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"
env_logger = "0.9"
thiserror = "1"
async-std = "1"
tide = "0.16.0"
diesel = { version = "1.4", features = ["postgres", "r2d2"] }
diesel_migrations = "1.4"
rust-embed = { version = "6.2.0", features = ["interpolate-folder-path"]}