From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- vendor/tinyvec/Cargo.toml | 113 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 vendor/tinyvec/Cargo.toml (limited to 'vendor/tinyvec/Cargo.toml') diff --git a/vendor/tinyvec/Cargo.toml b/vendor/tinyvec/Cargo.toml new file mode 100644 index 000000000..6c9c35e19 --- /dev/null +++ b/vendor/tinyvec/Cargo.toml @@ -0,0 +1,113 @@ +# 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 = "2018" +name = "tinyvec" +version = "1.6.0" +authors = ["Lokathor "] +description = "`tinyvec` provides 100% safe vec-like data structures." +readme = "README.md" +keywords = [ + "vec", + "no_std", + "no-std", +] +categories = [ + "data-structures", + "no-std", +] +license = "Zlib OR Apache-2.0 OR MIT" +repository = "https://github.com/Lokathor/tinyvec" + +[package.metadata.docs.rs] +features = [ + "alloc", + "std", + "grab_spare_slice", + "rustc_1_40", + "rustc_1_55", + "serde", +] +rustdoc-args = [ + "--cfg", + "docs_rs", +] + +[package.metadata.playground] +features = [ + "alloc", + "std", + "grab_spare_slice", + "rustc_1_40", + "rustc_1_55", + "serde", +] + +[profile.bench] +debug = 2 + +[profile.test] +opt-level = 3 + +[[test]] +name = "tinyvec" +required-features = [ + "alloc", + "std", +] + +[[bench]] +name = "macros" +harness = false +required-features = ["alloc"] + +[[bench]] +name = "smallvec" +harness = false +required-features = [ + "alloc", + "real_blackbox", +] + +[dependencies.arbitrary] +version = "1" +optional = true + +[dependencies.serde] +version = "1.0" +optional = true +default-features = false + +[dependencies.tinyvec_macros] +version = "0.1" +optional = true + +[dev-dependencies.criterion] +version = "0.3.0" + +[dev-dependencies.serde_test] +version = "1.0" + +[dev-dependencies.smallvec] +version = "1" + +[features] +alloc = ["tinyvec_macros"] +default = [] +experimental_write_impl = [] +grab_spare_slice = [] +nightly_slice_partition_dedup = [] +real_blackbox = ["criterion/real_blackbox"] +rustc_1_40 = [] +rustc_1_55 = ["rustc_1_40"] +rustc_1_57 = ["rustc_1_55"] +std = ["alloc"] -- cgit v1.2.3