[dependencies.orx-fixed-vec]
version = "3.9"
[dependencies.orx-pinned-vec]
version = "3.9"
[dependencies.orx-pseudo-default]
default-features = false
version = "1.4"
[dependencies.orx-split-vec]
version = "3.9"
[[example]]
name = "bag_of_things"
path = "examples/bag_of_things.rs"
[[example]]
name = "expressions"
path = "examples/expressions.rs"
[lib]
name = "orx_imp_vec"
path = "src/lib.rs"
[package]
authors = ["orxfun <orx.ugur.arikan@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["data-structures", "rust-patterns", "no-std"]
description = "`ImpVec`, stands for immutable push vector 👿, is a data structure which allows appending elements with a shared reference."
edition = "2021"
keywords = ["vec", "pinned", "bag", "container", "split"]
license = "MIT"
name = "orx-imp-vec"
readme = "README.md"
repository = "https://github.com/orxfun/orx-imp-vec/"
version = "2.7.0"
[[test]]
name = "debug"
path = "tests/debug.rs"
[[test]]
name = "deref_derefmut"
path = "tests/deref_derefmut.rs"
[[test]]
name = "eq"
path = "tests/eq.rs"
[[test]]
name = "from"
path = "tests/from.rs"
[[test]]
name = "from_iter"
path = "tests/from_iter.rs"
[[test]]
name = "imp_vec"
path = "tests/imp_vec.rs"
[[test]]
name = "index"
path = "tests/index.rs"
[[test]]
name = "into_iter"
path = "tests/into_iter.rs"
[[test]]
name = "new"
path = "tests/new.rs"