enso/lib/rust/shapely/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
810 B
TOML
Raw Normal View History

2021-10-30 03:28:55 +03:00
[package]
2022-05-23 05:16:04 +03:00
name = "enso-shapely"
2021-10-30 03:28:55 +03:00
version = "0.2.0"
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"
repository = "https://github.com/enso-org/enso"
2021-10-30 03:28:55 +03:00
license-file = "../../../LICENSE"
2022-05-23 05:16:04 +03:00
keywords = ["typeclass", "deriving"]
2021-10-30 03:28:55 +03:00
categories = ["algorithms"]
publish = true
[lib]
2022-11-25 16:05:57 +03:00
crate-type = ["rlib"]
2021-10-30 03:28:55 +03:00
[features]
default = []
[dependencies]
2023-06-17 17:14:19 +03:00
enso-zst = { path = "../zst" }
2023-01-28 01:39:37 +03:00
enso-shapely-macros = { path = "macros" }
paste = { workspace = true }
derivative = { workspace = true }
2022-05-23 05:16:04 +03:00
rustversion = { version = "1.0" }
wasm-bindgen = { workspace = true }
2022-08-27 01:25:34 +03:00
[dependencies.web-sys]
version = "0.3.4"
2021-10-30 03:28:55 +03:00
[dev-dependencies]
2022-02-11 15:19:02 +03:00
enso-prelude = { path = "../prelude" }
wasm-bindgen-test = "0.3.8"