mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-02-24 07:25:48 +08:00
25 lines
773 B
TOML
25 lines
773 B
TOML
|
[package]
|
||
|
name = "warpgate-database-protocols"
|
||
|
version = "0.3.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.1"
|
||
|
futures-core = { version = "0.3", default-features = false }
|
||
|
futures-util = { version = "0.3", default-features = false, features = [
|
||
|
"alloc",
|
||
|
"sink",
|
||
|
] }
|
||
|
memchr = { version = "2.4.1", default-features = false }
|
||
|
thiserror = "1.0"
|