mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-11-28 09:26:11 +00:00
380c4c1dc8
The single (but big) change is Dynamic Database RFC implementation: https://github.com/salsa-rs/salsa/pull/231
30 lines
789 B
TOML
30 lines
789 B
TOML
[package]
|
|
name = "salsa"
|
|
version = "0.15.0" # CHECK salsa-macros version
|
|
authors = ["Salsa developers"]
|
|
edition = "2018"
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/salsa-rs/salsa"
|
|
description = "A generic framework for on-demand, incrementalized computation (experimental)"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
crossbeam-utils = { version = "0.7.1", default-features = false }
|
|
indexmap = "1.0.1"
|
|
lock_api = "0.4"
|
|
log = "0.4.5"
|
|
parking_lot = "0.11.0"
|
|
rustc-hash = "1.0"
|
|
smallvec = "1.0.0"
|
|
rand = { version = "0.7", features = [ "small_rng" ], default-features = false }
|
|
|
|
salsa-macros = { version = "0.15.0", path = "components/salsa-macros" }
|
|
|
|
[dev-dependencies]
|
|
diff = "0.1.0"
|
|
env_logger = "0.7"
|
|
linked-hash-map = "0.5.2"
|
|
rand = "0.7"
|
|
rand_distr = "0.2.1"
|
|
|
|
[workspace]
|