[package] name = "zst" version = "0.1.2" authors = ["Dmitrii Demenev "] edition = "2021" # rust-version = "1.56.1" # https://github.com/foresterre/cargo-msrv description = "Zero-sized generic type with the associated type exposing the type parameter" documentation = "https://docs.rs/zst" readme = "README.md" repository = "https://github.com/JohnScience/zst" license = "MIT OR Apache-2.0" # license-file | not needed keywords = ["zst", "zero-sized", "zero", "sized", "typestate"] categories = ["no-std", "memory-management", "rust-patterns"] # https://crates.io/category_slugs # workspace | not needed build = "build.rs" # links | not needed # exclude | not needed autobins = false autoexamples = false autotests = false autobenches = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] the_assoc_ty_ext = "0.1.0" unconst_trait_impl = { version = "0.1.5" } remove_macro_call = { version = "0.1.1" } const_fn = { version = "0.4.9", optional = true } [build-dependencies] cfg_aliases = "0.1.1" # build.rs also generates other features for cfg macros [features] const_trait_impl = [] const_default_impls = ["const_fn"] const_fn_trait_bound = []