Add an explicit std feature so that features are purely additive.

This commit is contained in:
Dan Gohman
2018-02-13 17:48:04 -08:00
parent 61db54c447
commit e37f45667f
10 changed files with 41 additions and 27 deletions

View File

@@ -11,10 +11,12 @@ readme = "README.md"
name = "cton_native"
[dependencies]
cretonne = { path = "../cretonne", version = "0.1.0" }
cretonne = { path = "../cretonne", version = "0.1.0", default-features = false }
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
raw-cpuid = "3.0.0"
[features]
default = ["std"]
std = ["cretonne/std"]
no_std = ["cretonne/no_std"]