-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (27 loc) · 841 Bytes
/
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
[package]
name = "contiguous-mem"
version = "0.4.2"
edition = "2021"
description = "A contiguous memory storage"
authors = ["Tin Švagelj <[email protected]>"]
license = "MIT OR Apache-2.0 OR Zlib"
keywords = ["memory", "contiguous", "storage", "container", "nostd"]
categories = ["data-structures", "memory-management", "no-std"]
repository = "https://github.com/Caellian/contiguous_mem"
[[example]]
name = "ptr_metadata"
path = "examples/ptr_metadata.rs"
required-features = ["ptr_metadata"]
[dependencies]
portable-atomic = { version = "1", default-features = false, optional = true }
spin = { version = "0.9", optional = true }
[features]
default = []
no_std = ["dep:portable-atomic", "dep:spin"]
debug = []
ptr_metadata = []
error_in_core = []
[dev-dependencies]
byteorder = "1.4"
[package.metadata.docs.rs]
all-features = true