* Upgrade all crates to the Rust 2021 edition
I've personally started using the new format strings for things like
`panic!("some message {foo}")` or similar and have been upgrading crates
on a case-by-case basis, but I think it probably makes more sense to go
ahead and blanket upgrade everything so 2021 features are always
available.
* Fix compile of the C API
* Fix a warning
* Fix another warning
14 lines
369 B
TOML
14 lines
369 B
TOML
[package]
|
|
name = "islec"
|
|
version = "0.1.0"
|
|
authors = ["The Cranelift Project Developers"]
|
|
edition = "2021"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
cranelift-isle = { version = "*", path = "../isle/" }
|
|
env_logger = { version = "0.8", default-features = false }
|
|
miette = { version = "3.0.0", features = ["fancy"] }
|
|
structopt = "0.3.23"
|