mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 18:01:38 +03:00
32 lines
674 B
TOML
32 lines
674 B
TOML
[package]
|
|
name = "enso-macro-utils"
|
|
version = "0.2.0"
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
edition = "2021"
|
|
description = "Utilities for writing macros."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/enso-org/enso/lib/rust/macro-utils"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../LICENSE"
|
|
keywords = ["macro", "utility"]
|
|
categories = ["development-tools::procedural-macro-helpers"]
|
|
publish = true
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
|
|
[dependencies.syn]
|
|
version = "1.0"
|
|
features = [
|
|
'extra-traits',
|
|
'full', # for syn::ItemStruct
|
|
'visit'
|
|
]
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3.8"
|