-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
38 lines (30 loc) · 933 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
33
34
35
36
37
38
[package]
name = "uninit"
version = "0.6.2"
authors = [
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>",
"Alyssa Haroldsen <kupiakos@gmail.com>",
]
edition = "2021"
rust-version = "1.56"
documentation = "https://docs.rs/uninit"
homepage = "https://crates.io/crates/uninit"
repository = "https://github.com/danielhenrymantilla/rust-uninit"
description = "A collection of tools for a safer usage of uninitialized memory"
keywords = ["uninit", "sound", "unsafe", "read", "MaybeUninit"]
categories = ["memory-management", "rust-patterns"]
readme = "README.md"
license = "Zlib OR MIT OR Apache-2.0"
[dependencies]
zerocopy = { version = ">=0.1,<0.8", default-features = false, optional = true }
[features]
default = ["std"]
std = ["alloc"]
alloc = []
better-docs = ["nightly"]
nightly = []
specialization = ["nightly"]
chain = []
[package.metadata.docs.rs]
all-features = true
rustc-args = ["-C", "opt-level=2"]