# 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.61.0" name = "combo_vec" version = "0.7.3" authors = ["VirxEC"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A blazingly fast no-std vector-like ADT using the stack (and optionally heap for overflow)" readme = "README.md" categories = ["data-structures"] license = "MIT" repository = "https://github.com/VirxEC/combo_vec" [profile.release] lto = true codegen-units = 1 panic = "abort" [lib] name = "combo_vec" path = "src/lib.rs" [[test]] name = "combo_vec" path = "tests/combo_vec.rs" [[test]] name = "re_arr" path = "tests/re_arr.rs" [[bench]] name = "bench" path = "benches/bench.rs" harness = false required-features = ["alloc"] [dev-dependencies.arrayvec] version = "0.7.4" [dev-dependencies.criterion] version = "0.5.1" features = ["html_reports"] [dev-dependencies.smallvec] version = "1.11.2" features = [ "const_new", "const_generics", "union", ] [features] alloc = [] default = ["alloc"] [lints.clippy] all = "warn" nursery = "warn" pedantic = "warn" [lints.rust] unsafe_code = "forbid"