mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 12:51:37 +03:00
a509035017
Removes a bulk of rust crates that we no longer need, but that added significant install, build and testing time to the Rust parser. Most significantly, removed `enso-web` and `enso-shapely`, and got rid of many no longer necessary `#![feature]`s. Moved two still used proc-macros from shapely to prelude. The last remaining usage of `web-sys` is within the logger (`console.log`), but we may actually want to keep that one.
29 lines
599 B
TOML
29 lines
599 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 }
|
|
Inflector = "0.11.4"
|
|
|
|
[dependencies.syn]
|
|
version = "1.0"
|
|
features = ['extra-traits', 'visit', 'full']
|
|
|
|
[lints]
|
|
workspace = true
|