2017-03-12 20:44:27 +00:00
|
|
|
[package]
|
|
|
|
name = "postgres-protocol"
|
2018-02-12 01:14:02 +00:00
|
|
|
version = "0.3.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
|
|
|
readme = "../README.md"
|
2017-03-12 20:44:27 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-04-15 20:59:48 +00:00
|
|
|
base64 = "0.9"
|
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"
|
2018-04-15 20:59:48 +00:00
|
|
|
generic-array = "0.11"
|
|
|
|
hmac = "0.6"
|
2017-03-12 20:44:27 +00:00
|
|
|
md5 = "0.3"
|
2018-04-15 20:59:48 +00:00
|
|
|
memchr = "2.0"
|
|
|
|
rand = "0.4"
|
2018-01-14 14:48:02 +00:00
|
|
|
sha2 = "0.7"
|
2017-05-21 04:45:01 +00:00
|
|
|
stringprep = "0.1"
|