warpgate/warpgate-database-protocols/Cargo.toml

25 lines
772 B
TOML
Raw Permalink Normal View History

2022-07-20 16:02:37 +08:00
[package]
name = "warpgate-database-protocols"
2024-08-15 04:59:52 +08:00
version = "0.10.2"
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 }
2024-09-18 17:28:39 +08:00
bytes = "1.4"
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",
] }
2024-09-18 17:28:39 +08:00
memchr = { version = "2.5", default-features = false }
2022-07-20 16:02:37 +08:00
thiserror = "1.0"