rust-postgres/postgres-protocol/Cargo.toml

22 lines
454 B
TOML
Raw Normal View History

2017-03-12 20:44:27 +00:00
[package]
name = "postgres-protocol"
2020-07-06 20:30:43 +00:00
version = "0.5.2"
2017-03-12 20:44:27 +00:00
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
2017-03-12 20:44:27 +00:00
description = "Low level Postgres protocol APIs"
license = "MIT/Apache-2.0"
2020-01-02 12:08:15 +00:00
repository = "https://github.com/sfackler/rust-postgres"
2017-05-02 15:53:28 +00:00
readme = "../README.md"
2017-03-12 20:44:27 +00:00
[dependencies]
base64 = "0.12"
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"
2020-06-10 23:45:58 +00:00
hmac = "0.8"
md5 = "0.7"
2018-04-15 20:59:48 +00:00
memchr = "2.0"
2019-10-19 17:53:54 +00:00
rand = "0.7"
2020-06-10 23:45:58 +00:00
sha2 = "0.9"
2017-05-21 04:45:01 +00:00
stringprep = "0.1"