salsa/Cargo.toml

34 lines
741 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-06-18 07:40:21 +00:00
crossbeam = "0.8.1"
dashmap = "5.3.4"
hashlink = "0.8.0"
2024-06-18 07:52:37 +00:00
indexmap = "2"
2024-06-18 07:40:21 +00:00
log = "0.4.5"
parking_lot = "0.12.1"
2024-06-18 07:52:37 +00:00
rustc-hash = "1.1.0"
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-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"
[workspace]
members = ["components/salsa-macros"]