Files
wasmtime/lib/simplejit/Cargo.toml
2018-11-07 16:18:04 -08:00

37 lines
1.4 KiB
TOML

[package]
name = "cranelift-simplejit"
version = "0.23.0"
authors = ["The Cranelift Project Developers"]
description = "A simple JIT library backed by Cranelift"
repository = "https://github.com/CraneStation/cranelift"
documentation = "https://cranelift.readthedocs.io/"
categories = ["no-std"]
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.23.0", default-features = false }
cranelift-module = { path = "../module", version = "0.23.0", default-features = false }
cranelift-native = { path = "../native", version = "0.23.0", default-features = false }
region = "1.0.0"
libc = { version = "0.2.42", default-features = false }
errno = "0.2.4"
target-lexicon = { version = "0.2.0", default-features = false }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winbase", "memoryapi"] }
[dev-dependencies]
cranelift = { path = "../umbrella", version = "0.23.0" }
cranelift-frontend = { path = "../frontend", version = "0.23.0" }
cranelift-entity = { path = "../entity", version = "0.23.0" }
[features]
default = ["std"]
std = ["libc/use_std", "cranelift-codegen/std", "cranelift-module/std", "cranelift-native/std", "target-lexicon/std"]
core = ["cranelift-codegen/core", "cranelift-module/core", "cranelift-native/core"]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "CraneStation/cranelift" }