2015-01-15 08:31:55 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "bitflags"
|
2017-03-07 06:00:24 +00:00
|
|
|
version = "0.8.0" # also update number in readme for breaking changes
|
2015-01-15 08:31:55 +00:00
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
license = "MIT/Apache-2.0"
|
2017-03-29 12:46:25 +00:00
|
|
|
keywords = ["bit", "bitmask", "bitflags"]
|
2015-01-15 08:31:55 +00:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/rust-lang/bitflags"
|
|
|
|
homepage = "https://github.com/rust-lang/bitflags"
|
2015-09-21 23:50:21 +00:00
|
|
|
documentation = "https://doc.rust-lang.org/bitflags"
|
2017-03-30 08:23:59 +00:00
|
|
|
categories = ["no-std"]
|
2015-01-15 08:31:55 +00:00
|
|
|
description = """
|
|
|
|
A macro to generate structures which behave like bitflags.
|
|
|
|
"""
|
2017-03-07 04:19:42 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
unstable_testing = []
|