rust-postgres/postgres-shared/Cargo.toml

31 lines
902 B
TOML
Raw Normal View History

2016-12-20 23:33:16 +00:00
[package]
name = "postgres-shared"
2017-02-04 23:34:35 +00:00
version = "0.1.1"
2016-12-20 23:33:16 +00:00
authors = ["Steven Fackler <sfackler@gmail.com>"]
2016-12-26 21:36:34 +00:00
license = "MIT"
2016-12-26 21:41:09 +00:00
description = "Internal crate used by postgres and postgres-tokio"
2016-12-26 21:36:34 +00:00
repository = "https://github.com/sfackler/rust-postgres"
2016-12-20 23:33:16 +00:00
2016-12-21 16:14:24 +00:00
[features]
with-bit-vec = ["bit-vec"]
with-chrono = ["chrono"]
with-eui48 = ["eui48"]
2016-12-23 15:47:04 +00:00
with-rustc-serialize = ["rustc-serialize"]
2016-12-21 16:14:24 +00:00
with-serde_json = ["serde_json"]
with-time = ["time"]
with-uuid = ["uuid"]
2016-12-20 23:33:16 +00:00
[dependencies]
hex = "0.2"
2016-12-21 00:07:45 +00:00
fallible-iterator = "0.1.3"
2017-01-20 17:01:55 +00:00
phf = "=0.7.21"
2016-12-21 00:07:45 +00:00
postgres-protocol = "0.2"
2016-12-21 16:14:24 +00:00
bit-vec = { version = "0.4", optional = true }
2017-02-08 04:18:26 +00:00
chrono = { version = "0.3", optional = true }
2016-12-21 16:14:24 +00:00
eui48 = { version = "0.1", optional = true }
2016-12-23 15:47:04 +00:00
rustc-serialize = { version = "0.3", optional = true }
2017-01-31 14:54:59 +00:00
serde_json = { version = ">= 0.6, < 0.10", optional = true }
2016-12-21 16:14:24 +00:00
time = { version = "0.1.14", optional = true }
2017-02-04 23:03:47 +00:00
uuid = { version = ">= 0.1, < 0.5", optional = true }