# 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] edition = "2018" name = "libstaticvec" version = "0.2.1" authors = ["SlightlyOutOfPhase "] include = ["Cargo.toml", "rustfmt.toml", "src/**/*.rs", "c_header_and_example/**/*.*", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] description = "Experimentally provides a cdylib wrapping a (currently minimal) subset of the functionality of StaticVec, for use from C or any language with dynamic library support." readme = "README.md" keywords = ["vec", "array", "no_std", "vector", "stack"] categories = ["data-structures", "no-std", "external-ffi-bindings"] license = "MIT OR Apache-2.0" repository = "https://github.com/slightlyoutofphase/libstaticvec" [profile.dev] opt-level = 0 lto = false codegen-units = 16 debug = true debug-assertions = true rpath = false panic = "unwind" overflow-checks = true incremental = false [profile.release] opt-level = 3 lto = true codegen-units = 1 debug = false debug-assertions = false rpath = false panic = "abort" overflow-checks = false incremental = false [lib] crate-type = ["cdylib"] [dependencies.staticvec] version = "0.6" features = ["repr_c"] default-features = false [features] capacity_128 = [] capacity_16 = [] capacity_256 = [] capacity_32 = [] capacity_512 = [] capacity_64 = [] default = ["capacity_16"] [badges.travis-ci] repository = "slightlyoutofphase/libstaticvec"