rust-postgres/postgres-shared/Cargo.toml

29 lines
854 B
TOML
Raw Normal View History

2016-12-20 23:33:16 +00:00
[package]
name = "postgres-shared"
2018-02-12 01:17:52 +00:00
version = "0.4.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-0.5" = ["bit-vec"]
"with-chrono-0.4" = ["chrono"]
"with-eui48-0.3" = ["eui48"]
"with-geo-0.8" = ["geo"]
with-serde_json-1 = ["serde_json"]
"with-uuid-0.6" = ["uuid"]
2016-12-21 16:14:24 +00:00
2016-12-20 23:33:16 +00:00
[dependencies]
2018-04-15 20:59:48 +00:00
hex = "0.3"
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"
2017-06-11 20:06:26 +00:00
postgres-protocol = { version = "0.3", path = "../postgres-protocol" }
2016-12-21 16:14:24 +00:00
bit-vec = { version = "0.5", optional = true }
2017-06-30 18:13:10 +00:00
chrono = { version = "0.4", optional = true }
2017-07-22 04:58:04 +00:00
eui48 = { version = "0.3", optional = true }
geo = { version = "0.8", optional = true }
serde_json = { version = "1.0", optional = true }
uuid = { version = "0.6", optional = true }