martin/Cargo.toml
Stepan Kuzmin 9887d2bb99
feat: upgrade postgres crates (#85)
* feat: upgrade postgres crates

* style: rename db types

* ci: switch to x86_64-unknown-linux-gnu
2020-05-04 21:21:11 +03:00

42 lines
730 B
TOML

[package]
name = "martin"
version = "0.5.0"
authors = ["Stepan Kuzmin <to.stepan.kuzmin@gmail.com>"]
edition = "2018"
[lib]
name = "martin"
path = "src/lib.rs"
[[bin]]
name = "martin"
path = "src/bin/main.rs"
[dependencies]
actix = "0.9"
actix-cors = "0.2"
actix-rt = "1.1"
actix-web = "2.0"
docopt = "1"
env_logger = "0.7"
log = "0.4"
native-tls = "0.2"
num_cpus = "1.13"
postgres = { version = "0.17.3", features = ["with-time-0_2", "with-uuid-0_8", "with-serde_json-1"] }
postgres-native-tls = "0.3.0"
r2d2 = "0.8"
r2d2_postgres = "0.16"
semver = "0.9"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.8"
tilejson = "0.2"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "server"
harness = false