-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 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
[package]
name = "smart_access"
version = "0.7.0"
authors = ["arbrk1 <arbrk1@gmail.com>"]
edition = "2018"
description = 'A minimalistic "lazy bidirectional pointer" framework.'
readme = "README.md"
repository = "https://github.com/arbrk1/smart_access/"
license = "MIT"
keywords = ["data", "framework", "library", "optics", "lens"]
categories = ["data-structures", "rust-patterns", "no-std"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
multiref = { version = "0.1", optional = true }
hashbrown = { version = "0.8", optional = true }
[features]
alloc = []
collections = ["alloc"]
std_hashmap = []
batch_rt = ["alloc"]
batch_ct = []
batch = ["batch_ct", "batch_rt"]
detach = []
iter_mut = ["multiref", "alloc"]
traversal = []
default = ["collections", "hashbrown", "batch", "detach", "iter_mut", "traversal"]
[[test]]
name = "no_std"
test = false # "cargo test --no-default-features" is needed for this test to compile
required-features = ["batch_ct"]