2018-09-28 15:01:27 +00:00
|
|
|
[package]
|
|
|
|
name = "salsa"
|
2021-10-06 20:33:30 +00:00
|
|
|
version = "0.17.0-pre.2" # CHECK salsa-macros version
|
2019-06-25 10:49:20 +00:00
|
|
|
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:01:27 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-11-08 11:32:03 +00:00
|
|
|
arc-swap = "1.4.0"
|
2021-11-07 10:29:23 +00:00
|
|
|
crossbeam-utils = { version = "0.8", default-features = false }
|
|
|
|
dashmap = "4.0.2"
|
2021-11-08 11:32:03 +00:00
|
|
|
hashlink = "0.7.0"
|
2018-09-29 11:15:41 +00:00
|
|
|
indexmap = "1.0.1"
|
2022-06-07 12:39:07 +00:00
|
|
|
lock_api = "0.4.7"
|
2018-09-30 11:28:22 +00:00
|
|
|
log = "0.4.5"
|
2022-06-07 12:39:07 +00:00
|
|
|
parking_lot = "0.12.1"
|
2019-06-14 09:52:51 +00:00
|
|
|
rustc-hash = "1.0"
|
2019-11-25 21:41:38 +00:00
|
|
|
smallvec = "1.0.0"
|
2020-07-23 09:30:23 +00:00
|
|
|
oorandom = "11"
|
2019-07-02 11:40:43 +00:00
|
|
|
|
2021-10-06 20:33:30 +00:00
|
|
|
salsa-macros = { version = "0.17.0-pre.2", path = "components/salsa-macros" }
|
2018-09-30 10:59:28 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-10-22 13:12:15 +00:00
|
|
|
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"
|
2020-06-30 19:27:09 +00:00
|
|
|
rand = "0.7"
|
|
|
|
rand_distr = "0.2.1"
|
2021-10-24 09:51:03 +00:00
|
|
|
test-env-log = "0.2.7"
|
2021-10-30 12:59:15 +00:00
|
|
|
insta = "1.8.0"
|
2019-01-17 10:21:34 +00:00
|
|
|
|
2019-01-25 11:30:03 +00:00
|
|
|
[workspace]
|
2022-08-01 05:32:47 +00:00
|
|
|
members = [
|
|
|
|
"components/salsa-macros",
|
|
|
|
"components/salsa-entity-mock",
|
|
|
|
"components/salsa-entity-macros",
|
|
|
|
"calc-example/calc",
|
|
|
|
]
|