wasmer/Cargo.toml

65 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "wasmer"
2018-12-07 04:39:59 +00:00
version = "0.1.3"
authors = ["Syrus Akbary <me@syrusakbary.com>"]
edition = "2018"
repository = "https://github.com/wasmerio/wasmer"
2018-10-24 10:56:30 +00:00
publish = true
description = "High-Performance WebAssembly JIT interpreter"
license = "MIT"
2018-12-10 02:47:34 +00:00
build = "build/mod.rs"
2018-10-24 10:54:45 +00:00
include = [
"examples/**/*",
"src/**/*",
"Cargo.lock",
"Cargo.toml",
"LICENSE",
"Makefile",
"README.md",
"rustfmt.toml"
]
[dependencies]
2018-11-21 00:02:33 +00:00
# cranelift-native = "0.23.0"
cranelift-native = { path = "cranelift/lib/native" }
# cranelift-codegen = "0.23.0"
cranelift-codegen = { path = "cranelift/lib/codegen" }
# cranelift-entity = "0.23.0"
cranelift-entity = { path = "cranelift/lib/entity" }
# cranelift-wasm = "0.23.0"
cranelift-wasm = { path = "cranelift/lib/wasm" }
docopt = "1.0.0"
serde = "1.0.55"
serde_derive = "1.0.55"
tempdir = "0.3.7"
error-chain = "0.12.0"
structopt = "0.2.11"
2018-11-15 21:30:00 +00:00
wabt = "0.7.1"
wasmparser = "0.20.0"
region = "0.3.0"
memmap = "0.6.2"
2018-11-15 21:30:00 +00:00
# spin = "0.4.10"
2018-10-15 00:48:59 +00:00
log = "0.4.5"
2018-11-15 07:10:35 +00:00
target-lexicon = "0.2.0"
2018-11-15 21:30:00 +00:00
# libc = "0.2"
libc = { git = "https://github.com/rust-lang/libc" }
2018-11-28 21:57:59 +00:00
nix = "0.12.0"
rayon = "1.0.3"
byteorder = "1"
2018-12-06 01:39:06 +00:00
indicatif = "0.10"
console = "0.7.1"
2018-10-15 00:48:59 +00:00
[build-dependencies]
2018-11-15 21:30:00 +00:00
wabt = "0.7.1"
2018-10-19 09:46:07 +00:00
# [dev-dependencies]
# libffi = "0.6.4"
# maplit = "1.0.1"
2018-10-16 09:18:58 +00:00
2018-10-15 00:48:59 +00:00
[features]
default = ["fast-tests"]
2018-10-15 00:48:59 +00:00
debug = []
# This feature will allow cargo test to run much faster
fast-tests = []