[package]
edition = "2021"
rust-version = "1.97"
name = "radixdb-core"
version = "1.1.0"
authors = ["RadixDB contributors"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Canonical value, identity, and shared contracts for RadixDB"
homepage = "https://radixdb.org"
documentation = "https://radixdb.org/manual/1.2/"
readme = "README.md"
keywords = [
"database",
"sql",
"embedded",
"analytics",
"rust",
]
categories = ["database-implementations"]
license-file = "LICENSE"
repository = "https://github.com/IllayDevel/RadixDB"
[features]
default = []
dhat-heap = []
test-failpoints = []
[lib]
name = "radixdb_core"
path = "src/lib.rs"
[[test]]
name = "boundary"
path = "tests/boundary.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.crc32fast]
version = "1.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.smallvec]
version = "1.11"
[dependencies.thiserror]
version = "2.0"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v7",
"fast-rng",
]
[dev-dependencies.rustc-hash]
version = "1.1"