[package]
edition = "2021"
rust-version = "1.96"
name = "structfs-core-store"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core StructFS store traits - Record, Value, Path, Format"
readme = "README.md"
keywords = [
"store",
"path",
"read-write",
"structured-data",
]
categories = [
"data-structures",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/StructFS/structfs"
[features]
async = [
"async-trait",
"structfs-ll-store/async",
]
default = []
[lib]
name = "structfs_core_store"
path = "src/lib.rs"
[[test]]
name = "path_macro_ui"
path = "tests/path_macro_ui.rs"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.bytes]
version = "1.9"
[dependencies.collection_literals]
version = "1.0"
[dependencies.namecode]
version = "0.1.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.structfs-ll-store]
version = "0.2.0"
[dependencies.structfs-path-macro]
version = "0.2.0"
[dependencies.structfs-path-validation]
version = "0.2.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.unicode-ident]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1.42"
features = [
"rt-multi-thread",
"macros",
"rt",
"macros",
]
[dev-dependencies.trybuild]
version = "1.0"