Rename Cretonne to Cranelift!

This commit is contained in:
Dan Gohman
2018-07-13 09:01:28 -07:00
parent 19a636af96
commit f4dbd38a4c
306 changed files with 977 additions and 975 deletions

View File

@@ -1,29 +1,29 @@
[package]
name = "cretonne-tools"
authors = ["The Cretonne Project Developers"]
name = "cranelift-tools"
authors = ["The Cranelift Project Developers"]
version = "0.13.0"
description = "Binaries for testing the Cretonne libraries"
description = "Binaries for testing the Cranelift libraries"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cretonne.readthedocs.io/"
repository = "https://github.com/cretonne/cretonne"
documentation = "https://cranelift.readthedocs.io/"
repository = "https://github.com/cranelift/cranelift"
publish = false
[[bin]]
name = "cton-util"
path = "src/cton-util.rs"
name = "clif-util"
path = "src/clif-util.rs"
[dependencies]
cfg-if = "0.1"
cretonne-codegen = { path = "lib/codegen", version = "0.13.0" }
cretonne-reader = { path = "lib/reader", version = "0.13.0" }
cretonne-frontend = { path = "lib/frontend", version = "0.13.0" }
cretonne-wasm = { path = "lib/wasm", version = "0.13.0", optional = true }
cretonne-native = { path = "lib/native", version = "0.13.0" }
cretonne-filetests = { path = "lib/filetests", version = "0.13.0" }
cretonne-module = { path = "lib/module", version = "0.13.0" }
cretonne-faerie = { path = "lib/faerie", version = "0.13.0" }
cretonne-simplejit = { path = "lib/simplejit", version = "0.13.0" }
cretonne = { path = "lib/umbrella", version = "0.13.0" }
cranelift-codegen = { path = "lib/codegen", version = "0.13.0" }
cranelift-reader = { path = "lib/reader", version = "0.13.0" }
cranelift-frontend = { path = "lib/frontend", version = "0.13.0" }
cranelift-wasm = { path = "lib/wasm", version = "0.13.0", optional = true }
cranelift-native = { path = "lib/native", version = "0.13.0" }
cranelift-filetests = { path = "lib/filetests", version = "0.13.0" }
cranelift-module = { path = "lib/module", version = "0.13.0" }
cranelift-faerie = { path = "lib/faerie", version = "0.13.0" }
cranelift-simplejit = { path = "lib/simplejit", version = "0.13.0" }
cranelift = { path = "lib/umbrella", version = "0.13.0" }
filecheck = "0.3.0"
docopt = "1"
serde = "1.0.8"
@@ -36,7 +36,7 @@ target-lexicon = "0.0.2"
[features]
default = ["disas", "wasm"]
disas = ["capstone"]
wasm = ["wabt", "cretonne-wasm"]
wasm = ["wabt", "cranelift-wasm"]
[workspace]