18 lines
523 B
TOML
18 lines
523 B
TOML
[package]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
authors = ["Gandalf <gandalfderbunte@riseup.net>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tokio = { version = "=1.6.1", features = ["macros", "rt-multi-thread"] }
|
|
warp = "=0.3.1"
|
|
mobc = "=0.7.2"
|
|
mobc-postgres = { version = "=0.7.0", features = ["with-chrono-0_4", "with-serde_json-1"] }
|
|
# tokio-postgres = "=0.7.0"
|
|
hyper = "=0.14.0"
|
|
serde = {version = "=1.0.126", features = ["derive"] }
|
|
serde_json = "=1.0.64"
|
|
thiserror = "=1.0.24"
|
|
common = { version = "0.1.0", path = "../common" }
|