rust-postgres/postgres-protocol/Cargo.toml

25 lines
564 B
TOML
Raw Normal View History

2017-03-12 20:44:27 +00:00
[package]
name = "postgres-protocol"
2023-03-27 23:02:39 +00:00
version = "0.6.5"
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.21"
2017-03-12 20:44:27 +00:00
byteorder = "1.0"
2020-12-24 02:03:15 +00:00
bytes = "1.0"
2019-03-10 23:32:28 +00:00
fallible-iterator = "0.2"
2021-12-08 23:30:44 +00:00
hmac = "0.12"
md-5 = "0.10"
2018-04-15 20:59:48 +00:00
memchr = "2.0"
2020-12-21 15:05:20 +00:00
rand = "0.8"
2021-12-08 23:30:44 +00:00
sha2 = "0.10"
2017-05-21 04:45:01 +00:00
stringprep = "0.1"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2.9", features = ["js"] }