Don't force enable basic-blocks feature

Fixes #1179
This commit is contained in:
bjorn3
2019-10-29 20:36:03 +01:00
committed by Benjamin Bouvier
parent 7e5c33a29e
commit 689771caf3
3 changed files with 19 additions and 4 deletions

View File

@@ -10,13 +10,18 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.46.1" }
cranelift-module = { path = "../cranelift-module", version = "0.46.1" }
faerie = "0.11.0"
goblin = "0.0.24"
failure = "0.1.2"
target-lexicon = "0.8.1"
[dependencies.cranelift-codegen]
path = "../cranelift-codegen"
version = "0.46.1"
default-features = false
features = ["std"]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "CraneStation/cranelift" }

View File

@@ -10,11 +10,16 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.46.1" }
cranelift-module = { path = "../cranelift-module", version = "0.46.1" }
object = { version = "0.14.0", default-features = false, features = ["write"] }
target-lexicon = "0.8.1"
[dependencies.cranelift-codegen]
path = "../cranelift-codegen"
version = "0.46.1"
default-features = false
features = ["std"]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "CraneStation/cranelift" }

View File

@@ -10,7 +10,6 @@ readme = "README.md"
edition = "2018"
[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.46.1" }
cranelift-module = { path = "../cranelift-module", version = "0.46.1" }
cranelift-native = { path = "../cranelift-native", version = "0.46.1" }
region = "2.0.0"
@@ -19,6 +18,12 @@ errno = "0.2.4"
target-lexicon = "0.8.1"
memmap = { version = "0.7.0", optional = true }
[dependencies.cranelift-codegen]
path = "../cranelift-codegen"
version = "0.46.1"
default-features = false
features = ["std"]
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winbase", "memoryapi"] }