forked from tigger1005/fault_simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 1010 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (33 loc) · 1010 Bytes
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
[package]
name = "fault_simulator"
authors = ["Roland Ebrecht", "Luca Gladiator"]
version = "0.8.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev.package."*"]
opt-level = 3
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "my_benchmark"
harness = false
build = "build.rs"
[build-dependencies]
mml = { git = 'https://github.com/adjivas/ml.git', branch = 'master' }
[dependencies]
unicorn-engine = { git = 'https://github.com/unicorn-engine/unicorn.git', branch = 'dev' }
# unicorn-engine = "2.0.1"
elf = "0.7.0"
log = "0.4.17"
env_logger = "0.11.1"
capstone = "0.11.0"
indicatif = "0.17.2"
git-version = "0.3.5"
rayon = "1.8.1"
itertools = "0.12.0"
clap = { version = "4.5.3", features = ["derive"] }
mml = { git = 'https://github.com/adjivas/ml.git', branch = 'master' }
addr2line = "0.21.0"
strum = { version = "0.25.0", features=["derive"]}
csv = "1.3.0"
rand = "0.8.5"