[package]
edition = "2024"
name = "contextdb-core"
version = "0.3.4"
authors = ["John Cyriac <lucidprogrammer@hotmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types, traits, and error types for contextdb"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/context-graph-ai/contextdb"
resolver = "2"
[lib]
name = "contextdb_core"
path = "src/lib.rs"
[[test]]
name = "atomic_wrapper_audit"
path = "tests/atomic_wrapper_audit.rs"
[[test]]
name = "bincode_serde_path_audit"
path = "tests/bincode_serde_path_audit.rs"
[[test]]
name = "memory_safety_tests"
path = "tests/memory_safety_tests.rs"
[[test]]
name = "timestamp_audit"
path = "tests/timestamp_audit.rs"
[[test]]
name = "txid_newtype_tests"
path = "tests/txid_newtype_tests.rs"
[[test]]
name = "type_spread_audit"
path = "tests/type_spread_audit.rs"
[dependencies.roaring]
version = "0.11.3"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.uuid]
version = "1.22.0"
features = [
"v4",
"serde",
]
[dev-dependencies.bincode]
version = "2"
features = ["serde"]
[dev-dependencies.regex]
version = "1"
[dev-dependencies.rmp-serde]
version = "1"
[dev-dependencies.serde_bytes]
version = "0.11"
[dev-dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.toml]
version = "0.8"
[dev-dependencies.trybuild]
version = "1"
[dev-dependencies.walkdir]
version = "2"