rust-postgres/postgres-protocol/Cargo.toml
Nikhil Benesch 7537e8a918 postgres-protocol: use RustCrypto md-5 crate
Swap the md5 crate for the md-5 crate.  Despite the latter's somewhat
more suspicious name, it is part of the wider RustCrypto ecosystem, and
shares code with the sha2 crate that postgres-protocol already uses.
2021-01-08 13:35:45 -05:00

22 lines
456 B
TOML

[package]
name = "postgres-protocol"
version = "0.6.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
description = "Low level Postgres protocol APIs"
license = "MIT/Apache-2.0"
repository = "https://github.com/sfackler/rust-postgres"
readme = "../README.md"
[dependencies]
base64 = "0.13"
byteorder = "1.0"
bytes = "1.0"
fallible-iterator = "0.2"
hmac = "0.10"
md-5 = "0.9"
memchr = "2.0"
rand = "0.8"
sha2 = "0.9"
stringprep = "0.1"