2020-07-13 05:52:22 +00:00
|
|
|
[package]
|
|
|
|
name = "shopkeeper"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Tyler Hallada <tyler@hallada.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0"
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
dotenv = "0.15"
|
|
|
|
http-api-problem = { version = "0.17", features = ["with-warp"] }
|
|
|
|
hyper = "0.13"
|
|
|
|
listenfd = "0.3"
|
|
|
|
tokio = { version = "0.2", features = ["macros"] }
|
2020-07-27 04:09:45 +00:00
|
|
|
sqlx = { version = "0.3", default-features = false, features = [ "runtime-tokio", "macros", "postgres", "chrono", "uuid", "ipnetwork", "json" ] }
|
2020-07-13 05:52:22 +00:00
|
|
|
warp = { version = "0.2", features = ["compression"] }
|
|
|
|
refinery = { version = "0.3.0", features = [ "tokio-postgres", "tokio" ] }
|
|
|
|
barrel = { version = "0.6.5", features = [ "pg" ] }
|
|
|
|
clap = "3.0.0-beta.1"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-07-19 07:01:20 +00:00
|
|
|
serde_json = "1.0"
|
2020-07-16 04:42:04 +00:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
|
|
ipnetwork = "0.16"
|
|
|
|
url = "2.1"
|
2020-07-18 21:46:33 +00:00
|
|
|
async-trait = "0.1"
|
2020-07-28 02:36:48 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = "0.2"
|
2020-07-29 02:01:57 +00:00
|
|
|
tracing-futures = "0.2"
|