mirror of
https://github.com/warp-tech/warpgate.git
synced 2024-11-13 03:18:48 +08:00
24 lines
773 B
TOML
24 lines
773 B
TOML
[package]
|
|
name = "warpgate-database-protocols"
|
|
version = "0.5.0"
|
|
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"
|
|
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 }
|
|
thiserror = "1.0"
|