-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "orx-imp-vec"
version = "2.17.0"
edition = "2024"
authors = ["orxfun <[email protected]>"]
description = "`ImpVec` stands for immutable push vector 👿, it is a data structure which allows appending elements with a shared reference."
license = "MIT OR Apache-2.0"
repository = "https://github.com/orxfun/orx-imp-vec/"
keywords = ["vec", "pinned", "bag", "container", "split"]
categories = ["data-structures", "rust-patterns", "no-std"]
[dependencies]
orx-iterable = { version = "1.3.0", default-features = false }
orx-pseudo-default = { version = "2.1.0", default-features = false }
orx-pinned-vec = { version = "3.21.0", default-features = false }
orx-fixed-vec = { version = "3.22.0", default-features = false }
orx-split-vec = { version = "3.22.0", default-features = false }
orx-concurrent-iter = { version = "3.3.0", default-features = false }
[dev-dependencies]
clap = { version = "4.5.38", features = ["derive"] }
orx-parallel = { version = "3.3.0", default-features = false }
test-case = "3.3.1"