salsa/Cargo.toml

27 lines
623 B
TOML
Raw Normal View History

2018-09-28 15:01:27 +00:00
[package]
name = "salsa"
version = "0.10.0-alpha5"
2018-09-28 15:01:27 +00:00
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
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]
2018-09-28 15:04:52 +00:00
derive-new = "0.5.5"
rustc-hash = "1.0"
2018-12-27 13:09:47 +00:00
parking_lot = "0.7.0"
lock_api = "0.1.4"
indexmap = "1.0.1"
log = "0.4.5"
2018-10-12 17:36:27 +00:00
smallvec = "0.6.5"
salsa-macros = { version = "0.10.0-alpha5", path = "components/salsa-macros" }
[dev-dependencies]
diff = "0.1.0"
2018-10-30 12:09:26 +00:00
env_logger = "0.5.13"
rand = "0.5.5"
2019-01-17 10:21:34 +00:00
2019-01-25 11:30:03 +00:00
[workspace]