salsa/Cargo.toml

31 lines
789 B
TOML
Raw Normal View History

2018-09-28 15:01:27 +00:00
[package]
name = "salsa"
version = "0.14.2" # CHECK salsa-macros version
authors = ["Salsa developers"]
2018-09-28 15:01:27 +00:00
edition = "2018"
2018-10-02 09:59:10 +00:00
license = "Apache-2.0 OR MIT"
2018-10-05 15:07:16 +00:00
repository = "https://github.com/salsa-rs/salsa"
2018-10-01 13:09:02 +00:00
description = "A generic framework for on-demand, incrementalized computation (experimental)"
2018-09-28 15:48:21 +00:00
readme = "README.md"
2018-09-28 15:01:27 +00:00
[dependencies]
crossbeam-utils = { version = "0.7.1", default-features = false }
indexmap = "1.0.1"
2020-06-27 10:30:38 +00:00
lock_api = "0.4"
log = "0.4.5"
2020-06-27 10:33:09 +00:00
parking_lot = "0.11.0"
rustc-hash = "1.0"
2019-11-25 21:41:38 +00:00
smallvec = "1.0.0"
rand = { version = "0.7", features = [ "small_rng" ], default-features = false }
2019-07-02 11:40:43 +00:00
salsa-macros = { version = "0.14.1", path = "components/salsa-macros" }
[dev-dependencies]
diff = "0.1.0"
2020-06-27 10:33:09 +00:00
env_logger = "0.7"
2019-06-15 14:39:34 +00:00
linked-hash-map = "0.5.2"
rand = "0.7"
rand_distr = "0.2.1"
2019-01-17 10:21:34 +00:00
2019-01-25 11:30:03 +00:00
[workspace]