-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
37 lines (32 loc) · 1.15 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
[package]
name = "veriwasm"
version = "0.1.4"
authors = ["enjhnsn2 <e5johnso@eng.ucsd.edu>"]
edition = "2018"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/PLSysSec/veriwasm"
description = "A safety verifier for native-compiled WebAssembly code"
keywords = ["verification", "WebAssembly", "security", "static-analysis", "binary-analysis"]
[dependencies]
# Commit `3c7a77993badea3f6c4573ecea58c263af74e213` is the current tip of `vw-tweaks-ii`
#yaxpeax-core = { git = "https://github.com/iximeow/yaxpeax-core", rev = "3c7a77993badea3f6c4573ecea58c263af74e213" }
yaxpeax-core = {version = "0.0.4-vw-tweaks"}
yaxpeax-x86 = { version = "1.0.4", features = ["use-serde"] }
yaxpeax-arch = { version = "0.2.4", features = ["use-serde"] }
"petgraph" = "0.4.13"
clap = "2.33.3"
object = "0.21.0"
byteorder = "1.3.4"
colored = "2.0.0"
serde_json = "1.0.59"
log = "0.4.14"
env_logger = "0.8.4"
goblin = "0.4.1"
itertools = "0.10.1"
# This should be an optional compile target
wasmtime = {version = "0.28.0", optional = true }
lucet-module = "0.5.1"
elfkit = "0.0.4"
[features]
verify = ["wasmtime"] # feature for when we're integrating with wasmtime