Files
third_party_rust_tinyvec/Cargo.toml
T
2020-01-11 19:12:27 +01:00

32 lines
851 B
TOML

[package]
name = "tinyvec"
description = "Just, really the littlest Vec you could need. So smol."
version = "0.1.2-alpha.0"
authors = ["Lokathor <zefria@gmail.com>"]
edition = "2018"
license = "Zlib"
keywords = ["vec", "no_std", "no-std", "smol"]
categories = ["data-structures", "no-std"]
repository = "https://github.com/Lokathor/tinyvec"
[dependencies]
# not even std!
[features]
default = ["extern_crate_alloc"]
# Provide additional types and impls related to the `alloc` crate.
extern_crate_alloc = []
# allow use of nightly feature `slice_partition_dedup`,
# will become useless once that is stabilized:
# https://github.com/rust-lang/rust/issues/54279
nightly_slice_partition_dedup = []
[badges]
appveyor = { repository = "Lokathor/tinyvec" }
travis-ci = { repository = "Lokathor/tinyvec" }
[package.metadata.docs.rs]
all-features = true