2014-06-25 19:21:01 +00:00
|
|
|
[package]
|
2014-08-11 00:38:47 +00:00
|
|
|
name = "postgres"
|
2015-03-19 03:53:17 +00:00
|
|
|
version = "0.7.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-02-08 05:12:24 +00:00
|
|
|
documentation = "https://sfackler.github.io/rust-postgres/doc/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"
|
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]
|
|
|
|
phf_codegen = "0.6.11"
|
|
|
|
|
2014-11-22 23:52:11 +00:00
|
|
|
[dependencies]
|
2015-01-25 19:12:07 +00:00
|
|
|
phf = "0.6"
|
2015-02-26 17:02:32 +00:00
|
|
|
openssl = "0.5"
|
2015-01-24 07:29:29 +00:00
|
|
|
time = "0.1.14"
|
2015-01-27 17:05:57 +00:00
|
|
|
log = "0.2"
|
2015-02-26 17:02:32 +00:00
|
|
|
rustc-serialize = "0.3"
|
2015-03-20 03:04:43 +00:00
|
|
|
byteorder = "0.3"
|
2014-10-21 15:25:03 +00:00
|
|
|
|
2014-11-06 15:53:16 +00:00
|
|
|
[dependencies.uuid]
|
|
|
|
optional = true
|
2014-11-27 23:37:25 +00:00
|
|
|
version = "0.1"
|
2014-11-06 15:53:16 +00:00
|
|
|
|
2015-02-26 17:02:32 +00:00
|
|
|
[dependencies.unix_socket]
|
|
|
|
optional = true
|
2015-03-14 19:14:44 +00:00
|
|
|
version = "0.2"
|
2015-02-26 17:02:32 +00:00
|
|
|
|
2014-11-22 23:52:11 +00:00
|
|
|
[dev-dependencies]
|
2015-01-17 06:07:04 +00:00
|
|
|
url = "0.2"
|