-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
49 lines (37 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[workspace]
[package]
name = "greenwasm"
version = "0.3.1"
authors = ["Marvin Löbel <[email protected]>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/greenwasm"
description = "An implementation of the Webassembly spec in Rust."
readme = "README.md"
repository = "https://github.com/Kimundi/greenwasm"
categories = ["wasm"]
keywords = []
[dependencies.greenwasm-structure]
version = "0.3.0"
path = "greenwasm-structure"
[dependencies.greenwasm-validation]
version = "0.3.0"
path = "greenwasm-validation"
[dependencies.greenwasm-binary-format]
version = "0.3.0"
path = "greenwasm-binary-format"
[dependencies.greenwasm-execution]
version = "0.3.0"
path = "greenwasm-execution"
[dependencies.binaryen]
version = "0.4.0"
[dev-dependencies.greenwasm-spectest]
version = "0.3.1"
path = "greenwasm-spectest"
[profile.dev]
opt-level = 1 # The parser is horribly slow otherwise
[badges]
appveyor = { repository = "Kimundi/greenwasm" }
travis-ci = { repository = "Kimundi/greenwasm" }
is-it-maintained-issue-resolution = { repository = "Kimundi/greenwasm" }
is-it-maintained-open-issues = { repository = "Kimundi/greenwasm" }
maintenance = { status = "experimental" }