rust-postgres/postgres-protocol/Cargo.toml

23 lines
543 B
TOML
Raw Normal View History

2017-03-12 20:44:27 +00:00
[package]
name = "postgres-protocol"
2017-05-02 15:53:28 +00:00
version = "0.2.2"
2017-03-12 20:44:27 +00:00
authors = ["Steven Fackler <sfackler@gmail.com>"]
description = "Low level Postgres protocol APIs"
license = "MIT/Apache-2.0"
repository = "https://github.com/sfackler/rust-postgres-protocol"
2017-05-02 15:53:28 +00:00
documentation = "https://docs.rs/postgres-protocol/0.2.2/postgres_protocol"
readme = "../README.md"
2017-03-12 20:44:27 +00:00
[dependencies]
2017-05-21 04:45:01 +00:00
base64 = "0.5"
2017-03-12 20:44:27 +00:00
byteorder = "1.0"
2017-05-21 04:45:01 +00:00
bytes = "0.4"
2017-03-12 20:44:27 +00:00
fallible-iterator = "0.1"
2017-05-21 04:45:01 +00:00
generic-array = "0.7"
hmac = "0.1"
2017-03-12 20:44:27 +00:00
md5 = "0.3"
memchr = "1.0"
2017-05-21 04:45:01 +00:00
rand = "0.3"
sha2 = "0.5"
stringprep = "0.1"