-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
75 lines (65 loc) · 1.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "project_ares"
repository = "https://github.com/bee-san/Ares"
version = "0.10.0"
edition = "2021"
description = "Automated decoding tool, Ciphey but in Rust"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "ares"
path = "src/lib.rs"
bench = false
[[bin]]
name = "ares"
path = "src/main.rs"
bench = false
# Please keep this list in alphabetical order
[dependencies]
ansi_term = "0.12.1"
clap = {version = "4.4.18", features = ["derive"]}
crossbeam = "0.8"
env_logger = "0.10.0"
include_dir = "0.7.3"
lazy-regex = "3.0.1"
lazy_static = "1.4.0"
lemmeknow = "0.8.0"
log = "0.4"
num = "0.4"
once_cell = "1.18.0"
proc-macro2 = "1.0.76" # Required due to https://github.com/rust-lang/rust/issues/113152
rayon = "1.7.0"
regex = "1.9.1"
text_io = "0.1.12"
# Dependencies used for decoding
base64 = "0.21.2"
base65536 = "1.0.1"
base91 = "0.1.0"
bs58 = "0.5.0"
data-encoding = "2.4.0"
urlencoding = "2.1.3"
# Dev dependencies
[dev-dependencies]
cargo-nextest = "0.9.54"
criterion = "0.5.1"
[profile.release]
lto = "fat"
panic = "abort"
strip = "symbols"
codegen-units = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
[[bench]]
name = "benchmark_crackers"
harness = false
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.1.0"
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]