salsa/Cargo.toml

48 lines
1.1 KiB
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-07-29 07:58:57 +00:00
arc-swap = "1"
crossbeam = "0.8"
dashmap = "6"
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"
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-06-18 07:40:21 +00:00
[dev-dependencies]
2024-07-19 12:46:14 +00:00
annotate-snippets = "0.11.4"
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-06-18 07:40:21 +00:00
expect-test = "1.4.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"
[[bench]]
name = "compare"
harness = false
[[bench]]
name = "incremental"
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"]