rust-managed/Cargo.toml

18 lines
501 B
TOML
Raw Normal View History

2016-12-17 12:19:21 +08:00
[package]
name = "managed"
2017-01-08 02:28:51 +08:00
version = "0.1.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"]
2016-12-17 12:19:21 +08:00
license = "0BSD"
2017-01-08 02:28:51 +08:00
[features]
use_std = []
use_alloc = []
use_collections = []
default = ["use_std"]