Making crate accessible from std

This commit is contained in:
Raoul Strackx 2020-10-12 16:51:45 +02:00
parent 15e911c304
commit ccd61a94e5

View File

@ -23,12 +23,17 @@ exclude = [
]
build = "build.rs"
[dependencies]
core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' }
compiler_builtins = { version = '0.1.2', optional = true }
[badges]
travis-ci = { repository = "bitflags/bitflags" }
[features]
default = []
example_generated = []
rustc-dep-of-std = ["core", "compiler_builtins"]
[package.metadata.docs.rs]
features = [ "example_generated" ]