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>"]
|
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"
|
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
|
|
|
|
2023-06-04 17:02:03 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
js = ["getrandom/js"]
|
|
|
|
|
2017-03-12 20:44:27 +00:00
|
|
|
[dependencies]
|
2023-01-09 13:06:33 +00:00
|
|
|
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"
|
2023-06-04 17:02:03 +00:00
|
|
|
getrandom = { version = "0.2", optional = true }
|