mirror of
https://github.com/enso-org/enso.git
synced 2024-12-25 05:02:40 +03:00
35 lines
769 B
TOML
35 lines
769 B
TOML
[package]
|
|
name = "enso-shapely-macros"
|
|
version = "0.2.1"
|
|
authors = ["Enso Team <enso-dev@enso.org>"]
|
|
edition = "2021"
|
|
description = "Automated typeclass derivation."
|
|
readme = "README.md"
|
|
homepage = "https://github.com/enso-org/enso/lib/rust/shapely/macros"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../../LICENSE"
|
|
keywords = ["typeclass", "deriving", "macro"]
|
|
categories = ["algorithms"]
|
|
publish = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
enso-macro-utils = { path = "../../macro-utils" }
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
Inflector = "0.11.4"
|
|
itertools = "0.8.1"
|
|
boolinator = "2.4.0"
|
|
|
|
[dependencies.syn]
|
|
version = "1.0"
|
|
features = ['extra-traits', 'visit', 'full']
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3.8"
|