Files
wasmtime/crates/lightbeam/Cargo.toml
Dan Gohman a2b4148a91 General Cargo.toml cleanup. (#529)
* General Cargo.toml cleanup.

 - Remove travis-ci attributes.
 - Remove "experimental" badges from actively-developed crates.
 - Reflow some long lines.
 - Use dependency features consistently.
 - Add readme attributes

* Update WASI to the latest trunk.

This notably adds a .gitignore file for the WASI directory.
2019-11-08 17:22:37 -06:00

35 lines
781 B
TOML

[package]
name = "lightbeam"
version = "0.0.0"
authors = ["The Lightbeam Project Developers"]
description = "An optimising one-pass streaming compiler for WebAssembly"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/CraneStation/wasmtime"
readme = "README.md"
categories = ["wasm"]
keywords = ["webassembly", "wasm", "compile", "compiler", "jit"]
edition = "2018"
publish = false
[dependencies]
smallvec = "1.0.0"
dynasm = "0.5.1"
dynasmrt = "0.5.1"
wasmparser = "0.39.1"
memoffset = "0.5.1"
itertools = "0.8"
capstone = "0.6.0"
thiserror = "1.0.4"
cranelift-codegen = "0.49"
multi_mut = "0.1"
either = "1.5"
typemap = "0.3"
[dev-dependencies]
lazy_static = "1.2"
wat = "1.0.2"
quickcheck = "0.9.0"
[badges]
maintenance = { status = "experimental" }