# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.81.0" name = "mitsein" version = "0.4.1" authors = ["Sean Olson "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Strongly typed APIs for non-empty collections, slices, and iterators." readme = "README.md" keywords = [ "collection", "iterator", "non-empty", "one-or-more", "slice", ] categories = [ "data-structures", "no-std", "no-std::no-alloc", "rust-patterns", ] license = "MIT" repository = "https://github.com/olson-sean-k/mitsein" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "mitsein" path = "src/lib.rs" [dependencies.arrayvec] version = "^0.7.0" optional = true default-features = false [dependencies.itertools] version = "^0.13.0" optional = true default-features = false [dependencies.serde] version = "1.0" optional = true default-features = false [dependencies.serde_derive] version = "1.0" optional = true default-features = false [dev-dependencies.rstest] version = "^0.21.0" [dev-dependencies.serde_test] version = "1.0" [features] alloc = [ "itertools/use_alloc", "serde/alloc", ] arrayvec = ["dep:arrayvec"] default = ["std"] itertools = ["dep:itertools"] serde = [ "dep:serde", "dep:serde_derive", "arrayvec/serde", ] std = [ "alloc", "itertools/use_std", "serde/std", ]