2014-06-25 19:21:01 +00:00
|
|
|
[package]
|
2014-08-11 00:38:47 +00:00
|
|
|
name = "postgres"
|
2016-11-27 05:11:58 +00:00
|
|
|
version = "0.13.2"
|
2014-11-27 06:35:06 +00:00
|
|
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
2014-11-22 06:06:46 +00:00
|
|
|
license = "MIT"
|
|
|
|
description = "A native PostgreSQL driver"
|
2014-11-22 23:52:11 +00:00
|
|
|
repository = "https://github.com/sfackler/rust-postgres"
|
2016-11-27 05:11:58 +00:00
|
|
|
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.13.2/postgres"
|
2014-11-22 23:52:11 +00:00
|
|
|
readme = "README.md"
|
2016-01-29 07:52:01 +00:00
|
|
|
keywords = ["database", "postgres", "postgresql", "sql"]
|
2016-02-21 21:30:31 +00:00
|
|
|
include = ["src/*", "Cargo.toml", "LICENSE", "README.md", "THIRD_PARTY"]
|
2014-06-25 19:21:01 +00:00
|
|
|
|
2014-08-16 21:26:04 +00:00
|
|
|
[lib]
|
2014-06-25 19:21:01 +00:00
|
|
|
name = "postgres"
|
2014-08-03 02:10:45 +00:00
|
|
|
path = "src/lib.rs"
|
2014-08-13 03:14:21 +00:00
|
|
|
test = false
|
2014-12-02 06:24:31 +00:00
|
|
|
bench = false
|
2014-06-25 19:21:01 +00:00
|
|
|
|
2014-07-12 20:28:23 +00:00
|
|
|
[[test]]
|
|
|
|
name = "test"
|
2014-08-03 02:10:45 +00:00
|
|
|
path = "tests/test.rs"
|
2014-07-12 20:28:23 +00:00
|
|
|
|
2016-03-27 20:02:04 +00:00
|
|
|
[features]
|
2016-07-02 01:42:23 +00:00
|
|
|
with-bit-vec = ["bit-vec"]
|
|
|
|
with-chrono = ["chrono"]
|
|
|
|
with-eui48 = ["eui48"]
|
2016-11-06 04:01:26 +00:00
|
|
|
with-openssl = ["openssl"]
|
2016-11-09 21:25:08 +00:00
|
|
|
with-native-tls = ["native-tls"]
|
2016-07-02 01:42:23 +00:00
|
|
|
with-rustc-serialize = ["rustc-serialize"]
|
2016-11-27 06:43:18 +00:00
|
|
|
with-schannel = ["schannel"]
|
2016-07-02 01:42:23 +00:00
|
|
|
with-security-framework = ["security-framework"]
|
|
|
|
with-serde_json = ["serde_json"]
|
|
|
|
with-time = ["time"]
|
|
|
|
with-uuid = ["uuid"]
|
2016-03-27 20:02:04 +00:00
|
|
|
|
2016-11-08 21:51:24 +00:00
|
|
|
no-logging = []
|
|
|
|
|
2014-11-22 23:52:11 +00:00
|
|
|
[dependencies]
|
2015-05-13 22:24:04 +00:00
|
|
|
bufstream = "0.1"
|
2016-09-22 04:41:42 +00:00
|
|
|
fallible-iterator = "0.1.3"
|
2016-07-02 01:42:23 +00:00
|
|
|
hex = "0.2"
|
2015-05-13 22:24:04 +00:00
|
|
|
log = "0.3"
|
2016-11-27 06:05:44 +00:00
|
|
|
phf = "=0.7.20"
|
2016-09-22 04:41:42 +00:00
|
|
|
postgres-protocol = "0.1"
|
2016-07-02 01:42:23 +00:00
|
|
|
bit-vec = { version = "0.4", optional = true }
|
2015-05-15 03:31:07 +00:00
|
|
|
chrono = { version = "0.2.14", optional = true }
|
2016-07-02 01:42:23 +00:00
|
|
|
eui48 = { version = "0.1", optional = true }
|
2016-11-06 04:01:26 +00:00
|
|
|
openssl = { version = "0.9", optional = true }
|
2016-11-09 21:25:08 +00:00
|
|
|
native-tls = { version = "0.1", optional = true }
|
2016-07-02 01:42:23 +00:00
|
|
|
rustc-serialize = { version = "0.3", optional = true }
|
2016-11-27 06:43:18 +00:00
|
|
|
schannel = { version = "0.1", optional = true }
|
2016-07-02 01:42:23 +00:00
|
|
|
security-framework = { version = "0.1.2", optional = true }
|
2016-08-19 03:42:28 +00:00
|
|
|
serde_json = { version = ">= 0.6, < 0.9", optional = true }
|
2015-05-13 22:24:04 +00:00
|
|
|
time = { version = "0.1.14", optional = true }
|
2016-08-25 00:39:11 +00:00
|
|
|
uuid = { version = ">= 0.1, < 0.4", optional = true }
|
2015-03-21 22:32:49 +00:00
|
|
|
|
2014-11-22 23:52:11 +00:00
|
|
|
[dev-dependencies]
|
2016-04-25 14:55:22 +00:00
|
|
|
url = "1.0"
|