-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
29 lines (26 loc) · 811 Bytes
/
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
[package]
name = "sidefuzz"
version = "0.1.2"
authors = ["phayes <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/phayes/sidefuzz"
description = "Fuzzer to automatically find side-channel (timing) vulnerabilities"
keywords = ["fuzzing", "constant-time", "cryptography", "wasm"]
categories = ["cryptography", "development-tools::testing"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rand = "0.7.3"
hex = "0.4.2"
statrs = "0.13.0"
rolling-stats = "0.3.0"
clap = "2.33.0"
failure = "0.1.5"
color-backtrace = { version = "0.4.2" }
float_duration = { git = "https://github.com/phayes/rust-float-duration" }
wasmi = { path = "./vendor/wasmi" }
[dependencies]
lazy_static = "1.4.0"
[[bin]]
name = "sidefuzz"
doc = false