2014-06-25 19:21:01 +00:00
|
|
|
[package]
|
2014-08-11 00:38:47 +00:00
|
|
|
name = "postgres"
|
2015-12-03 05:58:16 +00:00
|
|
|
version = "0.10.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"
|
2015-12-03 05:58:16 +00:00
|
|
|
documentation = "https://sfackler.github.io/rust-postgres/doc/v0.10.2/postgres"
|
2014-11-22 23:52:11 +00:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["database", "sql"]
|
2015-02-22 21:39:17 +00:00
|
|
|
build = "build.rs"
|
2015-12-06 22:41:55 +00:00
|
|
|
exclude = [".travis.yml", ".gitignore", ".travis/*", "benches/*", "tests/*"]
|
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
|
|
|
|
2015-02-22 21:39:17 +00:00
|
|
|
[build-dependencies]
|
2015-03-31 04:22:22 +00:00
|
|
|
phf_codegen = "0.7"
|
2015-02-22 21:39:17 +00:00
|
|
|
|
2014-11-22 23:52:11 +00:00
|
|
|
[dependencies]
|
2015-05-13 22:24:04 +00:00
|
|
|
bufstream = "0.1"
|
2015-11-08 00:10:35 +00:00
|
|
|
byteorder = ">= 0.3, < 0.5"
|
2015-05-13 22:24:04 +00:00
|
|
|
log = "0.3"
|
|
|
|
phf = "0.7"
|
2015-12-06 22:27:03 +00:00
|
|
|
hex = "0.1"
|
2015-10-21 05:37:52 +00:00
|
|
|
net2 = { version = "0.2", features = ["nightly"] }
|
2015-12-06 22:27:03 +00:00
|
|
|
rustc-serialize = { version = "0.3", optional = true }
|
2015-05-15 03:31:07 +00:00
|
|
|
chrono = { version = "0.2.14", optional = true }
|
2015-11-17 05:50:25 +00:00
|
|
|
openssl = { version = ">= 0.6.4, < 0.8", optional = true }
|
2015-11-08 00:36:18 +00:00
|
|
|
serde = { version = "0.3", optional = true } # Delete for 0.11
|
2015-11-08 00:28:20 +00:00
|
|
|
serde_json = { version = "0.6", optional = true }
|
2015-05-13 22:24:04 +00:00
|
|
|
time = { version = "0.1.14", optional = true }
|
2015-12-05 23:40:36 +00:00
|
|
|
unix_socket = { version = "0.4.1", optional = true, features = ["socket_timeout"] }
|
2015-05-13 22:24:04 +00:00
|
|
|
uuid = { version = "0.1", optional = true }
|
2015-12-05 22:35:17 +00:00
|
|
|
security-framework = { version = "0.1.1", optional = true }
|
2015-12-06 20:40:00 +00:00
|
|
|
bit-vec = { version = "0.4", optional = true }
|
2015-03-21 22:32:49 +00:00
|
|
|
|
2014-11-22 23:52:11 +00:00
|
|
|
[dev-dependencies]
|
2015-01-17 06:07:04 +00:00
|
|
|
url = "0.2"
|