19 lines
463 B
TOML
19 lines
463 B
TOML
|
|
[package]
|
||
|
|
name = "rustdb-wire"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "MongoDB-compatible wire protocol parser and encoder for RustDb"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
bson = { workspace = true }
|
||
|
|
bytes = { workspace = true }
|
||
|
|
tokio-util = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
crc32fast = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tokio = { workspace = true }
|