martin/Cargo.toml

41 lines
685 B
TOML
Raw Normal View History

2017-09-30 13:55:44 +03:00
[package]
2018-01-16 15:55:05 +03:00
name = "martin"
2019-10-26 21:25:41 +03:00
version = "0.5.0"
2017-09-30 13:55:44 +03:00
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"
2017-09-30 13:55:44 +03:00
[dependencies]
actix = "0.9"
actix-rt = "1.0"
actix-web = "2.0"
actix-cors = "0.2"
2018-10-10 19:13:53 +03:00
docopt = "1"
env_logger = "0.7"
2018-03-26 14:12:43 +03:00
futures = "0.1"
log = "0.4"
num_cpus = "1.13"
postgres = { version = "0.15", features = ["with-time", "with-uuid", "with-serde_json"] }
2018-03-26 14:12:43 +03:00
r2d2 = "0.8"
r2d2_postgres = "0.14"
semver = "0.9"
2017-12-17 13:51:07 +03:00
serde = "1.0"
serde_derive = "1.0"
2018-03-28 19:15:00 +03:00
serde_json = "1.0"
2018-10-08 18:07:50 +03:00
serde_yaml = "0.8"
tilejson = "0.2"
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "server"
harness = false