Rename "cranelift-meta" to just "meta".
This makes it easier for the publish-all.sh script to know to skip this crate, and it avoids the need to use `extern cranelift_meta as meta`.
This commit is contained in:
@@ -22,7 +22,7 @@ target-lexicon = { version = "0.0.3", default-features = false }
|
|||||||
# accomodated in `tests`.
|
# accomodated in `tests`.
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
cranelift-meta = { path = "meta", version = "0.0.0" }
|
meta = { path = "meta", version = "0.0.0" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
# The "std" feature enables use of libstd. The "core" feature enables use
|
# The "std" feature enables use of libstd. The "core" feature enables use
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
// The build script expects to be run from the directory where this build.rs file lives. The
|
// The build script expects to be run from the directory where this build.rs file lives. The
|
||||||
// current directory is used to find the sources.
|
// current directory is used to find the sources.
|
||||||
|
|
||||||
extern crate cranelift_meta as meta;
|
extern crate meta;
|
||||||
|
|
||||||
use std::env;
|
use std::env;
|
||||||
use std::process;
|
use std::process;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cranelift-meta"
|
name = "meta"
|
||||||
authors = ["The Cranelift Project Developers"]
|
authors = ["The Cranelift Project Developers"]
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
description = "Metaprogram for cranelift-codegen code generator library"
|
description = "Metaprogram for cranelift-codegen code generator library"
|
||||||
|
|||||||
Reference in New Issue
Block a user