mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 09:22:41 +03:00
f14b79f8cf
Updated rust version, removed some unnecessary or problematic dependencies. Ported some changes from bazel branch.
25 lines
598 B
TOML
25 lines
598 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 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|