-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (46 loc) · 1.19 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
55
[package]
name = "muscat"
description = "Multithreaded Side Channel Attacks Tool"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Ledger-Donjon/muscat"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
progress_bar = ["dep:indicatif"]
quicklog = []
[dependencies]
serde_json = "1.0.132"
hex = "0.4.3"
npyz = "0.8.3"
ndarray = { version = "0.16.1", features = ["serde"] }
rayon = "1.10.0"
indicatif = { version = "0.17.8", optional = true }
ndarray-npy ="0.9.1"
itertools = "0.13.0"
thiserror = { version = "1.0.58" }
dtw = { git = "https://github.com/Ledger-Donjon/dtw.git", rev = "0f8d7ec3bbdf2ca4ec8ea35feddb8d1db73e7d54" }
num-traits = "0.2.19"
serde = { version = "1.0.214", features = ["derive"] }
[dev-dependencies]
criterion = "0.5.1"
ndarray-rand = "0.15.0"
anyhow = "1.0.92"
muscat = { path = ".", features = ["progress_bar"] }
[[example]]
name = "snr"
path = "examples/snr.rs"
required-features = ["quicklog"]
[[bench]]
name = "cpa"
harness = false
[[bench]]
name = "snr"
harness = false
[[bench]]
name = "dpa"
harness = false
[[bench]]
name = "ttest"
harness = false