2024-06-18 07:40:21 +00:00
|
|
|
[package]
|
|
|
|
name = "salsa"
|
|
|
|
version = "0.18.0"
|
|
|
|
authors = ["Salsa developers"]
|
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
repository = "https://github.com/salsa-rs/salsa"
|
|
|
|
description = "A generic framework for on-demand, incrementalized computation (experimental)"
|
2024-11-17 15:44:10 +00:00
|
|
|
rust-version = "1.76"
|
2024-06-18 07:40:21 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-07-29 07:58:57 +00:00
|
|
|
arc-swap = "1"
|
|
|
|
crossbeam = "0.8"
|
2024-10-04 04:41:20 +00:00
|
|
|
dashmap = { version = "6", features = ["raw-api"] }
|
2024-07-29 07:58:57 +00:00
|
|
|
hashlink = "0.9"
|
2024-06-18 07:52:37 +00:00
|
|
|
indexmap = "2"
|
2024-08-05 16:29:55 +00:00
|
|
|
append-only-vec = "0.1.5"
|
2024-07-22 22:01:50 +00:00
|
|
|
tracing = "0.1"
|
2024-07-29 07:58:57 +00:00
|
|
|
parking_lot = "0.12"
|
|
|
|
rustc-hash = "2"
|
2024-07-12 12:21:23 +00:00
|
|
|
salsa-macro-rules = { version = "0.1.0", path = "components/salsa-macro-rules" }
|
2024-06-18 07:40:21 +00:00
|
|
|
salsa-macros = { path = "components/salsa-macros" }
|
2024-07-29 07:58:57 +00:00
|
|
|
smallvec = "1"
|
|
|
|
lazy_static = "1"
|
2024-08-23 18:30:59 +00:00
|
|
|
rayon = "1.10.0"
|
2024-06-18 07:40:21 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-12-13 11:26:51 +00:00
|
|
|
annotate-snippets = "0.11.5"
|
2024-07-28 10:35:32 +00:00
|
|
|
derive-new = "0.6.0"
|
2024-07-26 09:55:14 +00:00
|
|
|
codspeed-criterion-compat = { version = "2.6.0", default-features = false }
|
2024-12-13 11:26:51 +00:00
|
|
|
expect-test = "1.5.0"
|
2024-06-18 07:52:37 +00:00
|
|
|
eyre = "0.6.8"
|
2024-07-28 10:35:32 +00:00
|
|
|
notify-debouncer-mini = "0.4.1"
|
|
|
|
ordered-float = "4.2.1"
|
2024-06-18 07:52:37 +00:00
|
|
|
rustversion = "1.0"
|
2024-07-29 21:42:14 +00:00
|
|
|
test-log = { version ="0.2.11", features = ["trace"] }
|
2024-06-18 07:40:21 +00:00
|
|
|
trybuild = "1.0"
|
|
|
|
|
2024-08-12 20:00:33 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "compare"
|
|
|
|
harness = false
|
|
|
|
|
2024-07-25 10:56:46 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "incremental"
|
|
|
|
harness = false
|
|
|
|
|
2024-11-17 15:44:10 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "accumulator"
|
|
|
|
harness = false
|
|
|
|
|
2024-06-18 07:40:21 +00:00
|
|
|
[workspace]
|
2024-07-28 10:35:32 +00:00
|
|
|
members = ["components/salsa-macro-rules", "components/salsa-macros"]
|