rust-managed/Cargo.toml

24 lines
571 B
TOML
Raw Normal View History

2016-12-17 12:19:21 +08:00
[package]
name = "managed"
2020-07-04 09:54:27 +08:00
version = "0.8.0"
2016-12-17 12:19:21 +08:00
authors = ["whitequark <whitequark@whitequark.org>"]
2017-01-08 02:28:51 +08:00
description = "An interface for logically owning objects, whether or not heap allocation is available."
documentation = "https://docs.rs/managed/"
homepage = "https://github.com/m-labs/rust-managed"
repository = "https://github.com/m-labs/rust-managed.git"
readme = "README.md"
keywords = ["ownership"]
2017-03-05 13:44:00 +08:00
categories = ["embedded"]
2016-12-17 12:19:21 +08:00
license = "0BSD"
2017-01-08 02:28:51 +08:00
[features]
std = []
alloc = []
default = ["std"]
# Unstable features
map = []
2017-11-19 17:34:30 +08:00
[profile.test]
opt-level = 1
codegen-units = 1