mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-06 12:48:20 +00:00
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "wasmer-compiler-llvm"
|
|
version = "3.2.0"
|
|
description = "LLVM compiler for Wasmer WebAssembly runtime"
|
|
categories = ["wasm"]
|
|
keywords = ["wasm", "webassembly", "compiler", "llvm"]
|
|
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
documentation = "https://docs.rs/wasmer-compiler-llvm/"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
wasmer-compiler = { path = "../compiler", version = "=3.2.0", features = [
|
|
"translator", "compiler"
|
|
] }
|
|
wasmer-vm = { path = "../vm", version = "=3.2.0" }
|
|
wasmer-types = { path = "../types", version = "=3.2.0" }
|
|
target-lexicon = { version = "0.12.2", default-features = false }
|
|
smallvec = "1.6"
|
|
object = { version = "0.28.3", default-features = false, features = ["read"] }
|
|
libc = { version = "^0.2", default-features = false }
|
|
byteorder = "1"
|
|
itertools = "0.10"
|
|
rayon = "1.5"
|
|
|
|
[dependencies.inkwell]
|
|
package = "inkwell"
|
|
version = "0.1.1"
|
|
default-features = false
|
|
features = ["llvm14-0", "target-x86", "target-aarch64", "target-riscv"]
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
lazy_static = "1.4"
|
|
regex = "1.5"
|
|
semver = "1.0"
|
|
rustc_version = "0.4"
|
|
|
|
[features]
|
|
test = []
|