martin/Cargo.toml

20 lines
410 B
TOML
Raw Normal View History

2017-09-30 13:55:44 +03:00
[package]
name = "falcon"
version = "0.1.0"
authors = ["Stepan Kuzmin <to.stepan.kuzmin@gmail.com>"]
2017-10-09 14:29:03 +03:00
[[bin]]
name = "falcon"
path = "src/main.rs"
2017-09-30 13:55:44 +03:00
[dependencies]
2017-11-12 17:51:58 +03:00
url = "1.6.0"
2017-10-09 14:29:03 +03:00
regex = "0.2.2"
2017-11-12 17:51:58 +03:00
fallible-iterator = "0.1.3"
2017-09-30 13:55:44 +03:00
iron = "0.5.1"
2017-10-09 14:29:03 +03:00
persistent = "0.3.0"
2017-11-12 17:51:58 +03:00
serde_json = "1.0.6"
2017-10-09 14:29:03 +03:00
r2d2 = "0.7.4"
r2d2_postgres = "0.13.0"
postgres = { version = "0.15.1", features = ["with-serde_json", "with-time", "with-uuid"] }