-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
24 lines (23 loc) · 894 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
[package]
name = "safe-transmute"
description = "A safeguarded transmute() for Rust"
documentation = "https://rawcdn.githack.com/nabijaczleweli/safe-transmute-rs/doc/safe_transmute/index.html"
repository = "https://github.com/nabijaczleweli/safe-transmute-rs"
readme = "README.md"
keywords = ["safe", "transmute", "checked"]
categories = ["rust-patterns", "memory-management", "no-std"]
license = "MIT"
# Remember to also update in appveyor.yml
version = "0.11.3"
authors = ["наб <[email protected]>",
"Eduardo Pinho <[email protected]>",
"Lukas Kalbertodt <[email protected]>",
"Philipp Tessenow <[email protected]>",
"Marijn Suijten <[email protected]>"]
exclude = ["*.enc"]
[features]
default = ["std"]
"std" = ["alloc"]
"alloc" = []
# Use const generics for array trait implementations
"const_generics" = []