2019-02-09 23:53:40 +00:00
|
|
|
[package]
|
|
|
|
name = "llvm-backend"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Lachlan Sneff <lachlan.sneff@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.1.2" }
|
|
|
|
wasmparser = "0.28.0"
|
|
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "llvm7-0" }
|
|
|
|
hashbrown = "0.1.8"
|
2019-02-12 03:34:04 +00:00
|
|
|
smallvec = "0.6.8"
|
2019-02-16 00:02:20 +00:00
|
|
|
goblin = "0.0.20"
|
2019-02-09 23:53:40 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wabt = "0.7.4"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
debug = ["wasmer-runtime-core/debug"]
|