[package]
edition = "2024"
rust-version = "1.88.0"
name = "qbice"
version = "0.4.4"
authors = ["Simmypeet"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Query-Based Incremental Computation Engine"
documentation = "https://docs.rs/qbice"
readme = "README.md"
keywords = [
"incremental",
"computation",
"query",
"cache",
"async",
]
categories = [
"caching",
"concurrency",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/Simmypeet/qbice"
resolver = "2"
[features]
default = ["default_config"]
default_config = ["rocksdb"]
fjall = ["qbice_storage/fjall"]
rocksdb = ["qbice_storage/rocksdb"]
[lib]
name = "qbice"
path = "src/lib.rs"
[dependencies.crossbeam]
version = "0.8.4"
[dependencies.dashmap]
version = "6.1.0"
features = [
"rayon",
"raw-api",
]
[dependencies.futures]
version = "0.3.31"
[dependencies.fxhash]
version = "0.2.1"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.qbice_derive]
version = "0.1.3"
[dependencies.qbice_serialize]
version = "0.1.3"
[dependencies.qbice_stable_hash]
version = "0.1.5"
[dependencies.qbice_stable_type_id]
version = "0.1.5"
[dependencies.qbice_storage]
version = "0.4.8"
[dependencies.rayon]
version = "1.11.0"
[dependencies.static_assertions]
version = "1.1.0"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.48.0"
features = [
"sync",
"rt",
]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
branches_sharing_code = "deny"
cognitive_complexity = "deny"
collection_is_never_read = "deny"
doc_markdown = "allow"
double-parens = "allow"
equatable_if_let = "deny"
iter_on_empty_collections = "deny"
iter_on_single_items = "deny"
missing_const_for_fn = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
needless_collect = "deny"
option_if_let_else = "deny"
redundant_clone = "deny"
set_contains_or_insert = "deny"
trait_duplication_in_bounds = "deny"
type_repetition_in_bounds = "deny"
use_self = "deny"
useless_let_if_seq = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_copy_implementations = "deny"
missing_debug_implementations = "deny"
missing_docs = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"