mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-13 00:40:22 +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
19 lines
423 B
TOML
19 lines
423 B
TOML
[package]
|
|
name = "salsa-macros"
|
|
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 = "Procedural macros for the salsa crate"
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
heck = "0.3"
|
|
proc-macro2 = "0.4"
|
|
quote = "0.6"
|
|
syn = { version = "0.15", features = ["full", "extra-traits"] }
|
|
|