| 123456789101112131415161718192021222324 |
- [package]
- name = "kvdb-overlay"
- version = "0.1.0"
- homepage = "https://dark.fi"
- description = "Overlay mechanism for key-value embedded databases"
- authors = ["Dyne.org foundation <foundation@dyne.org>"]
- repository = "https://codeberg.org/darkrenaissance/kvdb-overlay"
- license = "AGPL-3.0-only"
- edition = "2024"
- [dependencies]
- thiserror = "2.0.18"
- fjall = { version = "3.1", optional = true }
- sled = { version = "0.34", optional = true }
- tempfile = "3.20.0"
- [dev-dependencies]
- # To execute async tests
- smol = "2"
- [features]
- default = ["fjall-backend"]
- fjall-backend = ["fjall"]
- sled-backend = ["sled"]
|