1
1
[package ]
2
2
name = " wasmtime"
3
- authors = [" The Wasmtime Project Developers" ]
4
3
version = " 0.1.0"
4
+ authors = [" The Wasmtime Project Developers" ]
5
5
description = " High-level API to expose the Wasmtime runtime"
6
6
license = " Apache-2.0 WITH LLVM-exception"
7
7
repository = " https://github.com/CraneStation/wasmtime"
8
+ readme = " README.md"
8
9
edition = " 2018"
9
10
10
11
[lib ]
@@ -13,13 +14,13 @@ crate-type = ["lib", "staticlib", "cdylib"]
13
14
14
15
[dependencies ]
15
16
cranelift-codegen = { version = " 0.49" , features = [" enable-serde" ] }
16
- cranelift-native = { version = " 0.49" }
17
+ cranelift-native = " 0.49"
17
18
cranelift-entity = { version = " 0.49" , features = [" enable-serde" ] }
18
19
cranelift-wasm = { version = " 0.49" , features = [" enable-serde" ] }
19
- cranelift-frontend = { version = " 0.49" }
20
- wasmtime-runtime = { path = " ../runtime" }
21
- wasmtime-environ = { path = " ../environ" }
22
- wasmtime-jit = { path = " ../jit" }
20
+ cranelift-frontend = " 0.49"
21
+ wasmtime-runtime = { path = " ../runtime" }
22
+ wasmtime-environ = { path = " ../environ" }
23
+ wasmtime-jit = { path = " ../jit" }
23
24
wasmparser = { version = " 0.39.2" , default-features = false }
24
25
target-lexicon = { version = " 0.9.0" , default-features = false }
25
26
anyhow = " 1.0.19"
@@ -29,16 +30,30 @@ hashbrown = { version = "0.6.0", optional = true }
29
30
30
31
[features ]
31
32
default = [" std" ]
32
- std = [" cranelift-codegen/std" , " cranelift-wasm/std" , " wasmtime-environ/std" , " wasmparser/std" ]
33
- core = [" hashbrown/nightly" , " cranelift-codegen/core" , " cranelift-wasm/core" , " wasmtime-environ/core" , " wasmparser/core" ]
33
+ std = [
34
+ " cranelift-codegen/std" ,
35
+ " cranelift-wasm/std" ,
36
+ " wasmtime-environ/std" ,
37
+ " wasmparser/std"
38
+ ]
39
+ core = [
40
+ " hashbrown/nightly" ,
41
+ " cranelift-codegen/core" ,
42
+ " cranelift-wasm/core" ,
43
+ " wasmtime-environ/core" ,
44
+ " wasmparser/core"
45
+ ]
34
46
35
47
[dev-dependencies ]
36
48
# for wasmtime.rs
37
49
wasi-common = { path = " ../wasi-common" }
38
50
docopt = " 1.0.1"
39
51
serde = { "version" = " 1.0.94" , features = [" derive" ] }
40
52
pretty_env_logger = " 0.3.0"
41
- wasmtime-wast = { path = " ../wast" }
42
- wasmtime-wasi = { path = " ../wasi" }
53
+ wasmtime-wast = { path = " ../wast" }
54
+ wasmtime-wasi = { path = " ../wasi" }
43
55
rayon = " 1.1"
44
56
file-per-thread-logger = " 0.1.1"
57
+
58
+ [badges ]
59
+ maintenance = { status = " actively-developed" }
0 commit comments