2023-06-17 17:14:19 +03:00
|
|
|
[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]
|
2023-11-23 23:19:31 +03:00
|
|
|
serde = { workspace = true }
|
2024-03-25 02:45:55 +03:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|