[package] name = "tlist" version = "0.7.0" edition = "2021" license = "MIT" authors = [ "Qqwy / Marten"] description = "Type-level linked lists (of types) and type-level 'functions' to manipulate them. Because TList is implemented using GATs, usage is very ergonomic." categories = ["no-std", "no-std::no-alloc", "data-structures", "algorithms", "rust-patterns"] keywords = ["generic", "tlist", "functional", "list", "no_std"] readme = "README.md" repository = "https://github.com/qqwy/rust-tlist" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] typenum = { version = "1.16.0", optional = true } [dev-dependencies] static_assertions = "1.1.0" typenum = "1.16.0" [features] typenum = ["dep:typenum"] doc = ["typenum"] # <- Not for end users; only used to enable nightly-only feature doc_auto_cfg when building documentatino [package.metadata.docs.rs] features = ["doc"]