mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 10:11:37 +03:00
34 lines
903 B
TOML
34 lines
903 B
TOML
[package]
|
|
name = "enso-shapely"
|
|
version = "0.2.0"
|
|
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"
|
|
repository = "https://github.com/enso-org/enso"
|
|
license-file = "../../../LICENSE"
|
|
|
|
keywords = ["typeclass", "deriving"]
|
|
categories = ["algorithms"]
|
|
|
|
publish = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
enso-shapely-macros = { version = "^0.2.1", path = "macros" }
|
|
paste = { version = "0.1" }
|
|
derivative = { version = "2.2.0" }
|
|
shrinkwraprs = { version = "0.3.0" }
|
|
rustversion = { version = "1.0" }
|
|
|
|
[dev-dependencies]
|
|
enso-prelude = { path = "../prelude" }
|
|
wasm-bindgen-test = "0.3.8"
|