mirror of
https://github.com/enso-org/enso.git
synced 2024-11-28 08:54:06 +03:00
f14b79f8cf
Updated rust version, removed some unnecessary or problematic dependencies. Ported some changes from bazel branch.
26 lines
560 B
TOML
26 lines
560 B
TOML
[package]
|
|
name = "enso-macros"
|
|
version = "0.2.7"
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
edition = "2021"
|
|
description = "Common macros used in Enso codebase."
|
|
homepage = "https://github.com/enso-org/enso"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../../LICENSE"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
enso-macro-utils = { path = "../../macro-utils" }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true }
|
|
convert_case = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|