Tyler Hallada
91ff001c53
Pretty comfortable with the choice of crates now so it's time to start committing. Currently the API only returns errors, but throwing good errors is important.
25 lines
876 B
TOML
25 lines
876 B
TOML
[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"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4"
|
|
tokio = { version = "0.2", features = ["macros"] }
|
|
sqlx = { version = "0.3", default-features = false, features = [ "runtime-tokio", "macros", "postgres", "chrono", "uuid" ] }
|
|
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"] }
|