Files
third_party_rust_tinyvec/Cargo.toml
T
Lokathor 50b84c54b1 docs and rename the feature to alloc
Closes https://github.com/Lokathor/tinyvec/issues/18
We could discuss the "goals" section more of course, but for now it's enough to call that issue closed.
2020-01-13 19:55:38 -07:00

39 lines
889 B
TOML

[package]
name = "tinyvec"
description = "Just, really the littlest Vec you could need. So smol."
version = "0.2.0-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 = []
# Provide things that utilize the `alloc` 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
[workspace]
members = ["fuzz"]
[[test]]
name = "tinyvec"
required-features = ["alloc"]