salsa/Cargo.toml

44 lines
1,002 B
TOML
Raw Normal View History

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)"
[dependencies]
2024-06-18 07:52:37 +00:00
arc-swap = "1.6.0"
2024-07-10 12:13:00 +00:00
boomphf = "0.6.0"
2024-06-18 07:40:21 +00:00
crossbeam = "0.8.1"
dashmap = "6.0.1"
hashlink = "0.9.1"
2024-06-18 07:52:37 +00:00
indexmap = "2"
2024-07-11 09:47:18 +00:00
orx-concurrent-vec = "1.10.0"
2024-07-22 22:01:50 +00:00
tracing = "0.1"
2024-06-18 07:40:21 +00:00
parking_lot = "0.12.1"
rustc-hash = "2.0.0"
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-06-18 07:52:37 +00:00
smallvec = "1.0.0"
2024-06-18 07:40:21 +00:00
[dev-dependencies]
2024-07-19 12:46:14 +00:00
annotate-snippets = "0.11.4"
criterion = "0.5.1"
2024-06-18 07:52:37 +00:00
derive-new = "0.5.9"
2024-06-18 07:40:21 +00:00
expect-test = "1.4.0"
2024-06-18 07:52:37 +00:00
eyre = "0.6.8"
notify-debouncer-mini = "0.2.1"
ordered-float = "3.0"
rustversion = "1.0"
2024-06-18 07:40:21 +00:00
test-log = "0.2.11"
trybuild = "1.0"
[[bench]]
name = "incremental"
harness = false
2024-06-18 07:40:21 +00:00
[workspace]
members = ["components/salsa-macro-rules", "components/salsa-macros"]