forked from salsa-rs/salsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (62 loc) · 1.85 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "salsa"
version = "0.18.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "A generic framework for on-demand, incrementalized computation (experimental)"
[dependencies]
salsa-macro-rules = { version = "0.18.0", path = "components/salsa-macro-rules" }
salsa-macros = { version = "0.18.0", path = "components/salsa-macros" }
boxcar = "0.2.9"
crossbeam-queue = "0.3.11"
dashmap = { version = "6", features = ["raw-api"] }
hashbrown = "0.15"
hashlink = "0.10"
indexmap = "2"
parking_lot = "0.12"
rustc-hash = "2"
smallvec = "1"
tracing = "0.1"
# parallel map
rayon = { version = "1.10.0", optional = true }
# Stuff we want Update impls for by default
compact_str = { version = "0.8", optional = true }
[features]
default = ["salsa_unstable", "rayon"]
# FIXME: remove `salsa_unstable` before 1.0.
salsa_unstable = []
[dev-dependencies]
# examples
crossbeam-channel = "0.5.14"
eyre = "0.6.8"
notify-debouncer-mini = "0.4.1"
ordered-float = "4.2.1"
# tests/benches
annotate-snippets = "0.11.5"
codspeed-criterion-compat = { version = "2.6.0", default-features = false }
expect-test = "1.5.0"
rustversion = "1.0"
test-log = { version = "0.2.11", features = ["trace"] }
trybuild = "1.0"
[target.'cfg(all(not(target_os = "windows"), not(target_os = "openbsd"), any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "powerpc64")))'.dev-dependencies]
tikv-jemallocator = "0.6.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"]
[workspace.package]
authors = ["Salsa developers"]
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/salsa-rs/salsa"
rust-version = "1.80"