mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-15 23:25:41 +00:00
27 lines
570 B
TOML
27 lines
570 B
TOML
[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"
|
|
smallvec = "0.6.8"
|
|
goblin = "0.0.20"
|
|
dlopen = "0.1.6"
|
|
tempfile = "3.0.7"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
lazy_static = "1.2.0"
|
|
regex = "1.1.0"
|
|
semver = "0.9"
|
|
|
|
[dev-dependencies]
|
|
wabt = "0.7.4"
|
|
|
|
[features]
|
|
debug = ["wasmer-runtime-core/debug"] |