[package]
edition = "2024"
name = "k2db"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust rewrite foundation for the k2db policy-enforcing MongoDB library"
homepage = "https://github.com/frogfishio/k2db"
documentation = "https://docs.rs/k2db"
readme = "README.md"
license = "MIT"
repository = "https://github.com/frogfishio/k2db.git"
[lib]
name = "k2db"
path = "src/lib.rs"
[[test]]
name = "crud_parity"
path = "tests/crud_parity.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.base64]
version = "0.22"
[dependencies.futures-util]
version = "0.3"
[dependencies.jsonschema]
version = "0.18"
[dependencies.mongodb]
version = "3"
[dependencies.rand]
version = "0.8"
[dependencies.ratatouille]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"sync",
"time",
]
[dependencies.urlencoding]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v7"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"process",
"rt-multi-thread",
"sync",
"time",
]