2017-03-12 20:44:27 +00:00
|
|
|
[package]
|
|
|
|
name = "postgres-protocol"
|
2019-11-28 01:32:13 +00:00
|
|
|
version = "0.5.0-alpha.2"
|
2017-03-12 20:44:27 +00:00
|
|
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
2018-12-09 01:18:08 +00:00
|
|
|
edition = "2018"
|
2017-03-12 20:44:27 +00:00
|
|
|
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]
|
2019-01-31 06:48:04 +00:00
|
|
|
base64 = "0.10"
|
2017-03-12 20:44:27 +00:00
|
|
|
byteorder = "1.0"
|
2019-11-27 00:32:36 +00:00
|
|
|
bytes = "0.5"
|
2019-03-10 23:32:28 +00:00
|
|
|
fallible-iterator = "0.2"
|
2019-10-19 17:53:54 +00:00
|
|
|
generic-array = "0.13"
|
2018-10-11 16:00:59 +00:00
|
|
|
hmac = "0.7"
|
2019-03-06 02:59:43 +00:00
|
|
|
md5 = "0.6"
|
2018-04-15 20:59:48 +00:00
|
|
|
memchr = "2.0"
|
2019-10-19 17:53:54 +00:00
|
|
|
rand = "0.7"
|
2018-10-11 16:00:59 +00:00
|
|
|
sha2 = "0.8"
|
2017-05-21 04:45:01 +00:00
|
|
|
stringprep = "0.1"
|