[dependencies.dashmap]
version = "6.1.0"
[dependencies.inc-complete-derive]
version = "0.7.3"
[dependencies.parking_lot]
version = "0.12.4"
[dependencies.rustc-hash]
version = "2.1.1"
[dependencies.scc]
features = ["serde"]
version = "2.3.4"
[dependencies.serde]
features = ["derive", "rc"]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1.45.1"
[dev-dependencies.tokio-scoped]
version = "0.2.0"
[lib]
name = "inc_complete"
path = "src/lib.rs"
[package]
authors = ["Jake Fecher <jfecher11@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A library for writing incremental computations that re-execute the minimum number of steps when an input is changed"
documentation = "https://docs.rs/inc-complete"
edition = "2024"
keywords = ["incremental", "compilation", "compiler", "spreadsheet"]
license-file = "LICENSE"
name = "inc-complete"
readme = "README.md"
repository = "https://github.com/jfecher/inc-complete"
resolver = "2"
version = "0.8.0"
[[test]]
name = "assume_changed"
path = "tests/assume_changed.rs"
[[test]]
name = "assume_changed_derive"
path = "tests/assume_changed_derive.rs"
[[test]]
name = "compiler"
path = "tests/compiler.rs"
[[test]]
name = "cycle"
path = "tests/cycle.rs"
[[test]]
name = "cycle_multithread"
path = "tests/cycle_multithread.rs"
[[test]]
name = "derive_macros"
path = "tests/derive_macros.rs"
[[test]]
name = "multithread"
path = "tests/multithread.rs"
[[test]]
name = "multithread_no_duplicates"
path = "tests/multithread_no_duplicates.rs"
[[test]]
name = "serialize"
path = "tests/serialize.rs"