16 lines
442 B
TOML
16 lines
442 B
TOML
|
|
[package]
|
||
|
|
name = "rustdb-query"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "MongoDB-compatible query matching, update operators, aggregation, sort, and projection engine"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
bson = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
regex = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|