Rename the isle crate to cranelift-isle
The `isle` crate name is already taken on crates.io :(
This commit is contained in:
@@ -10,7 +10,7 @@ cargo-fuzz = true
|
||||
|
||||
[dependencies]
|
||||
env_logger = { version = "0.9.0", default-features = false }
|
||||
isle = { path = "../isle" }
|
||||
cranelift-isle = { path = "../isle" }
|
||||
libfuzzer-sys = "0.4"
|
||||
log = "0.4.14"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ authors = ["The Cranelift Project Developers"]
|
||||
description = "ISLE: Instruction Selection and Lowering Expressions. A domain-specific language for instruction selection in Cranelift."
|
||||
edition = "2018"
|
||||
license = "Apache-2.0 WITH LLVM-exception"
|
||||
name = "isle"
|
||||
name = "cranelift-isle"
|
||||
readme = "../README.md"
|
||||
repository = "https://github.com/bytecodealliance/wasmtime/tree/main/cranelift/isle"
|
||||
version = "0.78.0"
|
||||
|
||||
@@ -7,7 +7,7 @@ license = "Apache-2.0 WITH LLVM-exception"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
isle = { version = "*", path = "../isle/" }
|
||||
cranelift-isle = { version = "*", path = "../isle/" }
|
||||
env_logger = { version = "0.8", default-features = false }
|
||||
miette = { version = "3.0.0", features = ["fancy"] }
|
||||
structopt = "0.3.23"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use isle::{compile, lexer, parser};
|
||||
use cranelift_isle::{compile, lexer, parser};
|
||||
use miette::{Context, IntoDiagnostic, Result};
|
||||
use std::{
|
||||
fs,
|
||||
|
||||
Reference in New Issue
Block a user