You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
847 B
38 lines
847 B
[package]
|
|
|
|
name = "bitflags"
|
|
# NB: When modifying, also modify:
|
|
# 1. html_root_url in lib.rs
|
|
# 2. number in readme (for breaking changes)
|
|
version = "1.2.1"
|
|
authors = ["The Rust Project Developers"]
|
|
license = "MIT/Apache-2.0"
|
|
keywords = ["bit", "bitmask", "bitflags", "flags"]
|
|
readme = "README.md"
|
|
repository = "https://github.com/bitflags/bitflags"
|
|
homepage = "https://github.com/bitflags/bitflags"
|
|
documentation = "https://docs.rs/bitflags"
|
|
categories = ["no-std"]
|
|
description = """
|
|
A macro to generate structures which behave like bitflags.
|
|
"""
|
|
exclude = [
|
|
".travis.yml",
|
|
"appveyor.yml",
|
|
"bors.toml"
|
|
]
|
|
build = "build.rs"
|
|
|
|
[badges]
|
|
travis-ci = { repository = "bitflags/bitflags" }
|
|
|
|
[features]
|
|
default = []
|
|
example_generated = []
|
|
|
|
[package.metadata.docs.rs]
|
|
features = [ "example_generated" ]
|
|
|
|
[workspace]
|
|
members = ["test_suite"]
|