mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-12 16:35:21 +00:00
1736115d9f
- GC API now more orthogonal + flexible (#138) - Removed `set_unchecked` testing mechanism (#141) - Generated enums now squelch `non_camel_case_types` lint (#135) - Tests now using `set_foo` (#139) - `Query::group_storage` now called `Query::query_storage` (#142) Contributors to this release: - @matklad - @memoryruins - @nikomatsakis
26 lines
609 B
TOML
26 lines
609 B
TOML
[package]
|
|
name = "salsa"
|
|
version = "0.10.0"
|
|
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
|
|
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]
|
|
derive-new = "0.5.5"
|
|
rustc-hash = "1.0"
|
|
parking_lot = "0.7.0"
|
|
lock_api = "0.1.4"
|
|
indexmap = "1.0.1"
|
|
log = "0.4.5"
|
|
smallvec = "0.6.5"
|
|
salsa-macros = { version = "0.10.0", path = "components/salsa-macros" }
|
|
|
|
[dev-dependencies]
|
|
diff = "0.1.0"
|
|
env_logger = "0.5.13"
|
|
rand = "0.5.5"
|
|
|
|
[workspace]
|