warpgate/warpgate-database-protocols/Cargo.toml

25 lines
773 B
TOML
Raw Permalink Normal View History

2022-07-20 16:02:37 +08:00
[package]
name = "warpgate-database-protocols"
2022-08-14 19:02:49 +08:00
version = "0.5.0"
2022-07-20 16:02:37 +08:00
description = "Core of SQLx, the rust SQL toolkit. Just the database protocol parts."
license = "MIT OR Apache-2.0"
edition = "2021"
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>",
"Austin Bonander <austin.bonander@gmail.com>",
"Chloe Ross <orangesnowfox@gmail.com>",
"Daniel Akhterov <akhterovd@gmail.com>",
]
[dependencies]
tokio = { version = "1.20", features = ["io-util"] }
bitflags = { version = "1.3", default-features = false }
bytes = "1.2"
2022-07-20 16:02:37 +08:00
futures-core = { version = "0.3", default-features = false }
futures-util = { version = "0.3", default-features = false, features = [
"alloc",
"sink",
] }
memchr = { version = "2.5.0", default-features = false }
2022-07-20 16:02:37 +08:00
thiserror = "1.0"