Rename Cretonne to Cranelift!
This commit is contained in:
@@ -1,23 +1,23 @@
|
||||
[package]
|
||||
authors = ["The Cretonne Project Developers"]
|
||||
name = "cretonne"
|
||||
authors = ["The Cranelift Project Developers"]
|
||||
name = "cranelift"
|
||||
version = "0.13.0"
|
||||
description = "Umbrella for commonly-used cretonne crates"
|
||||
description = "Umbrella for commonly-used cranelift crates"
|
||||
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"
|
||||
readme = "README.md"
|
||||
keywords = ["compile", "compiler", "jit"]
|
||||
|
||||
[dependencies]
|
||||
cretonne-codegen = { path = "../codegen", version = "0.13.0", default-features = false }
|
||||
cretonne-frontend = { path = "../frontend", version = "0.13.0", default-features = false }
|
||||
cranelift-codegen = { path = "../codegen", version = "0.13.0", default-features = false }
|
||||
cranelift-frontend = { path = "../frontend", version = "0.13.0", default-features = false }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = ["cretonne-codegen/std", "cretonne-frontend/std"]
|
||||
core = ["cretonne-codegen/core", "cretonne-frontend/core"]
|
||||
std = ["cranelift-codegen/std", "cranelift-frontend/std"]
|
||||
core = ["cranelift-codegen/core", "cranelift-frontend/core"]
|
||||
|
||||
[badges]
|
||||
maintenance = { status = "experimental" }
|
||||
travis-ci = { repository = "cretonne/cretonne" }
|
||||
travis-ci = { repository = "cranelift/cranelift" }
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
This is an umbrella crate which contains no code of its own, but pulls in
|
||||
other cretonne library crates to provide a convenient one-line dependency,
|
||||
other cranelift library crates to provide a convenient one-line dependency,
|
||||
and a prelude, for common use cases.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//! Cretonne umbrella crate, providing a convenient one-line dependency.
|
||||
//! Cranelift umbrella crate, providing a convenient one-line dependency.
|
||||
|
||||
#![deny(missing_docs, trivial_numeric_casts, unused_extern_crates)]
|
||||
#![warn(unused_import_braces, unstable_features)]
|
||||
@@ -13,11 +13,11 @@
|
||||
)]
|
||||
|
||||
/// Provide these crates, renamed to reduce stutter.
|
||||
pub extern crate cretonne_codegen as codegen;
|
||||
pub extern crate cretonne_frontend as frontend;
|
||||
pub extern crate cranelift_codegen as codegen;
|
||||
pub extern crate cranelift_frontend as frontend;
|
||||
|
||||
/// A prelude providing convenient access to commonly-used cretonne features. Use
|
||||
/// as `use cretonne::prelude::*`.
|
||||
/// A prelude providing convenient access to commonly-used cranelift features. Use
|
||||
/// as `use cranelift::prelude::*`.
|
||||
pub mod prelude {
|
||||
pub use codegen;
|
||||
pub use codegen::entity::EntityRef;
|
||||
|
||||
Reference in New Issue
Block a user