2021-10-30 03:28:55 +03:00
|
|
|
[package]
|
2022-05-23 05:16:04 +03:00
|
|
|
name = "enso-shapely-macros"
|
2021-10-30 03:28:55 +03:00
|
|
|
version = "0.2.1"
|
|
|
|
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 = "Automated typeclass derivation."
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/enso-org/enso/lib/rust/shapely/macros"
|
|
|
|
repository = "https://github.com/enso-org/enso"
|
2021-10-30 03:28:55 +03:00
|
|
|
license-file = "../../../LICENSE"
|
|
|
|
keywords = ["typeclass", "deriving", "macro"]
|
|
|
|
categories = ["algorithms"]
|
|
|
|
publish = true
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
|
|
|
[dependencies]
|
2022-05-23 05:16:04 +03:00
|
|
|
enso-macro-utils = { path = "../../macro-utils" }
|
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
|
|
|
Inflector = "0.11.4"
|
2023-01-28 01:39:37 +03:00
|
|
|
itertools = { workspace = true }
|
|
|
|
boolinator = { workspace = true }
|
|
|
|
paste = { workspace = true }
|
2021-10-30 03:28:55 +03:00
|
|
|
|
|
|
|
[dependencies.syn]
|
|
|
|
version = "1.0"
|
2022-05-23 05:16:04 +03:00
|
|
|
features = ['extra-traits', 'visit', 'full']
|
2021-10-30 03:28:55 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-11 15:19:02 +03:00
|
|
|
wasm-bindgen-test = "0.3.8"
|