2020-07-13 05:52:22 +00:00
|
|
|
[package]
|
2020-10-13 00:53:19 +00:00
|
|
|
name = "bazaar_realm_api"
|
2020-07-13 05:52:22 +00:00
|
|
|
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"
|
2020-11-07 07:57:46 +00:00
|
|
|
bincode = "1.3"
|
2020-07-13 05:52:22 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
dotenv = "0.15"
|
|
|
|
http-api-problem = { version = "0.17", features = ["with-warp"] }
|
|
|
|
hyper = "0.13"
|
2020-11-07 05:28:54 +00:00
|
|
|
lazy_static = "1.4"
|
2020-07-13 05:52:22 +00:00
|
|
|
listenfd = "0.3"
|
2020-11-07 07:57:46 +00:00
|
|
|
mime = "0.3"
|
2020-11-09 02:12:28 +00:00
|
|
|
openssl-probe = "0.1"
|
2020-08-01 04:25:04 +00:00
|
|
|
tokio = { version = "0.2", features = ["macros", "rt-threaded", "sync"] }
|
2020-11-09 05:47:59 +00:00
|
|
|
sqlx = { git = "https://github.com/launchbadge/sqlx", branch = "master", default-features = false, features = [ "runtime-tokio", "macros", "postgres", "chrono", "uuid", "ipnetwork", "json", "migrate", "offline" ] }
|
2020-11-11 22:58:02 +00:00
|
|
|
warp = { version = "0.2", features = ["compression", "tls"] }
|
2020-07-13 05:52:22 +00:00
|
|
|
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"] }
|
2020-11-09 05:37:04 +00:00
|
|
|
ipnetwork = "0.17"
|
2020-07-16 04:42:04 +00:00
|
|
|
url = "2.1"
|
2020-07-18 21:46:33 +00:00
|
|
|
async-trait = "0.1"
|
2020-11-03 01:22:12 +00:00
|
|
|
seahash = "4.0"
|
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"
|
2020-08-01 04:25:04 +00:00
|
|
|
lru = "0.5"
|
|
|
|
http = "0.2"
|