arrayvec 0.3.25

A vector with a fixed capacity, it can be stored on the stack too. Implements fixed capacity ArrayVec and ArrayString.
Documentation
# 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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "arrayvec"
version = "0.3.25"
authors = ["bluss"]
description = "A vector with a fixed capacity, it can be stored on the stack too. Implements fixed capacity ArrayVec and ArrayString."
documentation = "https://docs.rs/arrayvec/"
keywords = ["stack", "vector", "array", "data-structure", "no_std"]
license = "MIT/Apache-2.0"
repository = "https://github.com/bluss/arrayvec"
[package.metadata.release]
no-dev-version = true
[dependencies.generic-array]
version = "0.5.1"
optional = true

[dependencies.nodrop]
version = "0.1.8"
default-features = false

[dependencies.odds]
version = "0.2.23"
default-features = false

[features]
default = ["std"]
std = ["odds/std", "nodrop/std"]
use_generic_array = ["generic-array"]
use_union = ["nodrop/use_union"]