Files
wasmtime/cranelift/egraph/Cargo.toml
Alex Crichton ee2ef5bdd0 Tidy up some more deps with workspace dependencies (#4965)
I missed these in #4905 and noticed just now but wanted to handle them
to ensure we uniformly handle deps in the workspace.
2022-09-26 17:27:35 -07:00

25 lines
731 B
TOML

[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-egraph"
version = "0.89.0"
description = "acyclic-egraph (aegraph) implementation for Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://docs.rs/cranelift-egraph"
repository = "https://github.com/bytecodealliance/wasmtime"
edition = "2021"
[dependencies]
cranelift-entity = { workspace = true }
log = { workspace = true }
smallvec = { workspace = true }
indexmap = { version = "1.9.1" }
hashbrown = { version = "0.12.2", features = ["raw"] }
fxhash = "0.2.1"
[features]
default = []
# Enable detailed trace-level debug logging. Excluded by default to
# omit the dynamic overhead of checking the logging level.
trace-log = []