-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
41 lines (32 loc) · 1.1 KB
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "linked-list"
version = "0.1.0"
license = "MIT OR Apache-2.0"
description = "An alternative implementation of std::collections::LinkedList"
authors = [
"Alexis Beingessner <[email protected]>",
"Peter Blackson <[email protected]>",
]
edition = "2021"
rust-version = "1.67"
repository = "https://github.com/contain-rs/linked-list"
homepage = "https://github.com/contain-rs/linked-list"
documentation = "https://docs.rs/linked-list/latest/linked_list"
keywords = ["data-structures"]
readme = "README.md"
[dependencies]
allocator-api2 = "0.2.20"
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
borsh = { version = "1.5", default-features = false, features = ["derive", "std"], optional = true }
miniserde = { version = "0.1", optional = true }
nanoserde = { version = "0.1", optional = true }
[dev-dependencies]
serde_json = "1.0"
[features]
default = ["std"]
std = []
serde_std = ["std", "serde/std"]
serde_no_std = ["serde/alloc"]
borsh = ["dep:borsh", "std"]
[package.metadata.docs.rs]
features = ["serde", "miniserde", "nanoserde", "borsh"]