forked from CraneStation/wasi-common
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (42 loc) · 1.28 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
50
[package]
name = "wasi-common"
version = "0.1.0"
authors = [
"Adam C. Foltzer <acfoltzer@fastly.com>",
"Frank Denis <github@pureftpd.org>",
"Jakub Konka <kubkon@jakubkonka.com>",
"Dan Gohman <sunfish@mozilla.com>"]
edition = "2018"
license = "Apache-2.0 WITH LLVM-exception"
[dependencies]
wasi-common-cbindgen = { path = "wasi-common-cbindgen" }
failure = "0.1"
libc = "0.2"
rand = "0.6"
cfg-if = "0.1.9"
log = "0.4"
[target.'cfg(unix)'.dependencies]
nix = "0.13"
[target.'cfg(windows)'.dependencies]
winx = { path = "winx" }
winapi = "0.3"
[dev-dependencies]
wasmtime-runtime = { git = "https://github.com/cranestation/wasmtime", rev = "165dc49" }
wasmtime-environ = { git = "https://github.com/cranestation/wasmtime", rev = "165dc49" }
wasmtime-jit = { git = "https://github.com/cranestation/wasmtime", rev = "165dc49" }
wasmtime-wasi = { git = "https://github.com/cranestation/wasmtime", rev = "165dc49" }
cranelift-codegen = "0.36.0"
cranelift-entity = "0.36.0"
cranelift-wasm = "0.36.0"
cranelift-native = "0.36.0"
target-lexicon = "0.3.0"
pretty_env_logger = "0.3.0"
[patch."https://github.com/CraneStation/wasi-common"]
wasi-common = { path = "." }
[build-dependencies]
cfg-if = "0.1.9"
[lib]
name = "wasi_common"
[workspace]
members = ["wasi-common-cbindgen"]
exclude = ["winx"]