-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (49 loc) · 1.39 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
51
52
53
54
[package]
authors = ["Nick Fitzgerald <[email protected]>"]
categories = ["command-line-utilities", "development-tools", "wasm"]
description = "The WebAssembly Indirect Call Inliner"
documentation = "https://docs.rs/winliner"
edition = "2021"
exclude = ["**.wasm"]
homepage = "https://github.com/fitzgen/winliner"
license = "Apache-2.0 WITH LLVM-exception"
name = "winliner"
readme = "./README.md"
repository = "https://github.com/fitzgen/winliner"
version = "1.0.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "winliner"
required-features = [
"clap",
"env_logger",
"serde",
"serde_json",
"wasi-cap-std-sync",
"wasmtime",
"wasmtime-wasi",
]
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.3.22", features = ["derive"], optional = true }
env_logger = { version = "0.10.0", optional = true }
log = "0.4.20"
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
wasi-cap-std-sync = { version = "11.0.1", optional = true }
wasm-encoder = { version = "0.34.1", features = ["wasmparser"] }
wasmparser = "0.114.0"
wasmtime = { version = "11.0.1", optional = true }
wasmtime-wasi = { version = "11.0.1", optional = true }
[dev-dependencies]
diff = "0.1.13"
env_logger = "0.10.0"
serde = "1"
serde_json = "1"
wasmprinter = "0.2.62"
wasmtime = "11.0.1"
wat = "1.0.75"
[workspace]
members = [
"fuzz",
]