Merge pull request #12 from alexcrichton/update-support

Update support for being built in rust-lang/rust
This commit is contained in:
Alex Crichton
2019-08-19 10:21:12 -05:00
committed by GitHub
+6
View File
@@ -17,7 +17,13 @@ according to Unicode Standard Annex #11 rules.
exclude = [ "target/*", "Cargo.lock" ]
[dependencies]
std = { version = "1.0", package = "rustc-std-workspace-std", optional = true }
core = { version = "1.0", package = "rustc-std-workspace-core", optional = true }
compiler_builtins = { version = "0.1", optional = true }
[features]
default = []
no_std = []
bench = []
rustc-dep-of-std = ['std', 'core', 'compiler_builtins']