-
Notifications
You must be signed in to change notification settings - Fork 155
/
Cargo.toml
52 lines (45 loc) · 1.19 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[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)"
rust-version = "1.76"
[dependencies]
arc-swap = "1"
crossbeam = "0.8"
dashmap = { version = "6", features = ["raw-api"] }
hashlink = "0.9"
indexmap = "2"
append-only-vec = "0.1.5"
tracing = "0.1"
parking_lot = "0.12"
rustc-hash = "2"
salsa-macro-rules = { version = "0.1.0", path = "components/salsa-macro-rules" }
salsa-macros = { path = "components/salsa-macros" }
smallvec = "1"
rayon = "1.10.0"
[dev-dependencies]
annotate-snippets = "0.11.5"
derive-new = "0.6.0"
codspeed-criterion-compat = { version = "2.6.0", default-features = false }
expect-test = "1.5.0"
eyre = "0.6.8"
notify-debouncer-mini = "0.4.1"
ordered-float = "4.2.1"
rustversion = "1.0"
test-log = { version ="0.2.11", features = ["trace"] }
trybuild = "1.0"
[[bench]]
name = "compare"
harness = false
[[bench]]
name = "incremental"
harness = false
[[bench]]
name = "accumulator"
harness = false
[workspace]
members = ["components/salsa-macro-rules", "components/salsa-macros"]