* Update tracing-core to a version which doesn't depend on lazy-static. * Update crossbeam-utils to a version that doesn't depend on lazy-static. * Update crossbeam-epoch to a version that doesn't depend on lazy-static. * Update clap to a version that doesn't depend on lazy-static. * Convert Wasmtime's own use of lazy_static to once_cell. * Make `GDB_REGISTRATION`'s comment a doc comment. * Fix compilation on Windows.
14 lines
441 B
TOML
14 lines
441 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/", features = ["miette-errors", "logging"] }
|
|
env_logger = { version = "0.9", default-features = false }
|
|
miette = { version = "4.7.0", features = ["fancy"] }
|
|
clap = { version = "3.2.0", features = ["derive"] }
|