2021-10-30 03:28:55 +03:00
|
|
|
[package]
|
2022-05-23 05:16:04 +03:00
|
|
|
name = "enso-macro-utils"
|
2021-10-30 03:28:55 +03:00
|
|
|
version = "0.2.0"
|
|
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
2021-12-01 18:06:57 +03:00
|
|
|
edition = "2021"
|
2022-05-23 05:16:04 +03:00
|
|
|
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"
|
2021-10-30 03:28:55 +03:00
|
|
|
license-file = "../../LICENSE"
|
|
|
|
keywords = ["macro", "utility"]
|
|
|
|
categories = ["development-tools::procedural-macro-helpers"]
|
|
|
|
publish = true
|
|
|
|
|
|
|
|
[lib]
|
2022-11-24 20:54:45 +03:00
|
|
|
crate-type = ["rlib"]
|
2021-10-30 03:28:55 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-03-03 01:00:47 +03:00
|
|
|
proc-macro2 = { workspace = true }
|
|
|
|
quote = { workspace = true }
|
2024-08-14 02:16:55 +03:00
|
|
|
syn = { workspace = true }
|
2024-03-25 02:45:55 +03:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|