rust-postgres/postgres-types/Cargo.toml
2019-10-09 19:23:12 -07:00

28 lines
1.0 KiB
TOML

[package]
name = "postgres-types"
version = "0.1.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
[features]
"derive" = ["postgres-derive"]
"with-bit-vec-0_6" = ["bit-vec-06"]
"with-chrono-0_4" = ["chrono-04"]
"with-eui48-0_4" = ["eui48-04"]
"with-geo-types-0_4" = ["geo-types-04"]
with-serde_json-1 = ["serde-1", "serde_json-1"]
"with-uuid-0_7" = ["uuid-07"]
[dependencies]
fallible-iterator = "0.2"
postgres-protocol = { version = "0.4.1", path = "../postgres-protocol" }
postgres-derive = { version = "0.3.3", optional = true, path = "../postgres-derive" }
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }
chrono-04 = { version = "0.4", package = "chrono", optional = true }
eui48-04 = { version = "0.4", package = "eui48", optional = true }
geo-types-04 = { version = "0.4", package = "geo-types", optional = true }
serde-1 = { version = "1.0", package = "serde", optional = true }
serde_json-1 = { version = "1.0", package = "serde_json", optional = true }
uuid-07 = { version = "0.7", package = "uuid", optional = true }