mirror of
https://github.com/Start9Labs/patch-db.git
synced 2026-03-26 10:21:53 +00:00
52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[package]
|
|
authors = ["Aiden McClelland <aiden@start9labs.com>"]
|
|
categories = ["database-implementations"]
|
|
description = "A database that tracks state updates as RFC 6902 JSON Patches"
|
|
edition = "2018"
|
|
keywords = ["json", "json-pointer", "json-patch"]
|
|
license = "MIT"
|
|
name = "patch-db"
|
|
readme = "README.md"
|
|
repository = "https://github.com/Start9Labs/patch-db"
|
|
version = "0.1.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
debug = ["tracing"]
|
|
trace = ["debug", "tracing-error"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.42"
|
|
fd-lock-rs = "0.1.3"
|
|
futures = "0.3.8"
|
|
json-patch = { path = "../json-patch" }
|
|
json-ptr = { path = "../json-ptr" }
|
|
lazy_static = "1.4.0"
|
|
tracing = { version = "0.1.29", optional = true }
|
|
tracing-error = { version = "0.1.2", optional = true }
|
|
nix = "0.23.0"
|
|
patch-db-macro = { path = "../patch-db-macro" }
|
|
serde = { version = "1.0.118", features = ["rc"] }
|
|
serde_cbor = { path = "../cbor" }
|
|
serde_json = "1.0.61"
|
|
thiserror = "1.0.23"
|
|
tokio = { version = "1.0.1", features = [
|
|
"sync",
|
|
"fs",
|
|
"rt",
|
|
"io-util",
|
|
"macros",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
proptest = "1.0.0"
|
|
serde = { version = "1.0.118", features = ["rc", "derive"] }
|
|
tokio = { version = "1.0.1", features = [
|
|
"sync",
|
|
"fs",
|
|
"rt",
|
|
"rt-multi-thread",
|
|
"io-util",
|
|
"macros",
|
|
] }
|