-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 741 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "identified_vec"
version = "0.1.11"
edition = "2021"
authors = ["Alexander Cyon <alex.cyon@gmail.com>"]
description = "Like HashSet but retaining INSERTION order and without `Hash` requirement on the Element type."
license = "MIT"
readme = "README.md"
repository = "https://github.com/Sajjon/identified_vec"
keywords = ["identifiable", "vec", "orderset", "set", "hashset"]
categories = ["data-structures"]
[features]
default = ["id_prim"]
serde = ["dep:serde"]
id_prim = []
[dependencies]
serde = { version = "1.0.193", optional = true }
thiserror = "1.0.50"
[dev-dependencies]
identified_vec = { path = ".", features = ["id_prim", "serde"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"