# 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" name = "stupid_utils" version = "0.4.1" authors = ["wefcdse"] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "A crate that provides some simple and maybe stupid or useful tools" readme = "README.md" keywords = ["utils"] license = "MIT OR Apache-2.0" repository = "https://github.com/wefcdse/stupid_utils" [package.metadata.docs.rs] all-features = false features = [ "dependent", "build_script", ] no-default-features = false rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "stupid_utils" path = "src/lib.rs" [dependencies.functional_trait] version = "1.1.1" optional = true [features] build_script = [ "fn_apply", "tuple_index", ] default = [ "dependent", "build_script", ] dependent = ["functional_trait"] disable_non_zerocost = [] fn_apply = [] functional_trait = ["dep:functional_trait"] tuple_index = []