1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies 7# 8# If you believe there's an error in this file please file an 9# issue against the rust-lang/cargo repository. If you're 10# editing this file be aware that the upstream Cargo.toml 11# will likely look very different (and much more reasonable) 12 13[package] 14edition = "2018" 15name = "tinyvec" 16version = "1.1.1" 17authors = ["Lokathor <zefria@gmail.com>"] 18description = "`tinyvec` provides 100% safe vec-like data structures." 19keywords = ["vec", "no_std", "no-std"] 20categories = ["data-structures", "no-std"] 21license = "Zlib OR Apache-2.0 OR MIT" 22repository = "https://github.com/Lokathor/tinyvec" 23[package.metadata.docs.rs] 24features = ["alloc", "grab_spare_slice", "rustc_1_40", "serde"] 25rustdoc-args = ["--cfg", "docs_rs"] 26 27[package.metadata.playground] 28features = ["alloc", "grab_spare_slice", "rustc_1_40", "serde"] 29[profile.test] 30opt-level = 3 31 32[[test]] 33name = "tinyvec" 34required-features = ["alloc"] 35 36[[bench]] 37name = "macros" 38harness = false 39required-features = ["alloc"] 40[dependencies.serde] 41version = "1.0" 42optional = true 43default-features = false 44 45[dependencies.tinyvec_macros] 46version = "0.1" 47optional = true 48[dev-dependencies.criterion] 49version = "0.3.0" 50 51[dev-dependencies.serde_test] 52version = "1.0" 53 54[features] 55alloc = ["tinyvec_macros"] 56default = [] 57experimental_write_impl = [] 58grab_spare_slice = [] 59nightly_const_generics = [] 60nightly_slice_partition_dedup = [] 61rustc_1_40 = [] 62