[dependencies.bigdecimal]
optional = true
version = "0.4.0"
[dependencies.bitflags]
version = "2.4.0"
[dependencies.bytes]
version = "1.5.0"
[dependencies.chrono]
default-features = false
features = ["std"]
optional = true
version = "0.4.23"
[dependencies.gel-errors]
version = "0.5"
[dependencies.num-bigint]
optional = true
version = "0.4.3"
[dependencies.num-traits]
optional = true
version = "0.2.10"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.190"
[dependencies.serde_json]
optional = true
version = "1"
[dependencies.snafu]
features = ["backtrace"]
version = "0.8.0"
[dependencies.uuid]
version = "1.1.2"
[dev-dependencies.humantime]
version = "2.1.0"
[dev-dependencies.pretty_assertions]
version = "1.2.1"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.test-case]
version = "3.0.0"
[features]
all-types = ["with-num-bigint", "with-bigdecimal", "with-chrono"]
default = []
with-bigdecimal = ["bigdecimal", "num-bigint", "num-traits"]
with-chrono = ["chrono"]
with-num-bigint = ["num-bigint", "num-traits"]
with-serde = ["serde", "serde_json"]
[lib]
name = "gel_protocol"
path = "src/lib.rs"
[lints.clippy]
clone_on_copy = "allow"
collapsible_if = "allow"
derive_partial_eq_without_eq = "allow"
manual_strip = "allow"
new_ret_no_self = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
useless_format = "allow"
vec_init_then_push = "allow"
while_let_on_iterator = "allow"
zero_ptr = "allow"
[package]
authors = ["MagicStack Inc. <hello@magic.io>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = """
Low-level protocol implementation for Gel database client.
For applications, use gel-tokio.
Formerly published as edgedb-protocol.
"""
edition = "2018"
license = "MIT/Apache-2.0"
name = "gel-protocol"
readme = "README.md"
resolver = "2"
rust-version = "1.75"
version = "0.8.0"
[[test]]
name = "base"
path = "tests/base.rs"
[[test]]
name = "client_messages"
path = "tests/client_messages.rs"
[[test]]
name = "codecs"
path = "tests/codecs.rs"
[[test]]
name = "datetime_chrono"
path = "tests/datetime_chrono.rs"
[[test]]
name = "datetime_system"
path = "tests/datetime_system.rs"
[[test]]
name = "decode"
path = "tests/decode.rs"
[[test]]
name = "server_messages"
path = "tests/server_messages.rs"
[[test]]
name = "type_descriptors"
path = "tests/type_descriptors.rs"