wasmer/lib/llvm-backend/Cargo.toml

31 lines
669 B
TOML
Raw Normal View History

2019-02-09 15:53:40 -08:00
[package]
name = "wasmer-llvm-backend"
2019-07-05 13:35:55 -07:00
version = "0.5.4"
2019-02-09 15:53:40 -08:00
authors = ["Lachlan Sneff <lachlan.sneff@gmail.com>"]
edition = "2018"
[dependencies]
2019-07-05 13:35:55 -07:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.4" }
2019-03-11 10:03:40 -07:00
inkwell = { git = "https://github.com/wasmerio/inkwell", branch = "llvm7-0" }
2019-07-02 10:00:19 -07:00
wasmparser = "0.32.1"
2019-02-09 15:53:40 -08:00
hashbrown = "0.1.8"
2019-02-11 19:34:04 -08:00
smallvec = "0.6.8"
2019-02-15 16:02:20 -08:00
goblin = "0.0.20"
libc = "0.2.49"
nix = "0.13.0"
2019-03-03 16:02:20 -06:00
capstone = { version = "0.5.0", optional = true }
[build-dependencies]
cc = "1.0"
lazy_static = "1.2.0"
regex = "1.1.0"
semver = "0.9"
rustc_version = "0.2.3"
2019-02-09 15:53:40 -08:00
[dev-dependencies]
wabt = "0.7.4"
[features]
2019-03-03 16:02:20 -06:00
debug = ["wasmer-runtime-core/debug"]
2019-04-12 12:19:46 -07:00
disasm = ["capstone"]