enso/lib/rust/zst/Cargo.toml
Paweł Grabarz a509035017
remove unused rust modules (#9540)
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.
2024-03-27 12:19:38 +00:00

24 lines
503 B
TOML

[package]
name = "enso-zst"
version = "0.1.0"
authors = ["Enso Team <enso-dev@enso.org>"]
edition = "2021"
description = "Zero-sized types, similar to PhantomData, but with more obvious behavior."
readme = "README.md"
homepage = "https://github.com/enso-org/enso/lib/rust/zst"
repository = "https://github.com/enso-org/enso"
license-file = "../../../LICENSE"
keywords = ["zst"]
[lib]
crate-type = ["rlib"]
[features]
default = []
[dependencies]
serde = { workspace = true }
[lints]
workspace = true