-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (36 loc) · 826 Bytes
/
Copy pathCargo.toml
File metadata and controls
43 lines (36 loc) · 826 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
41
42
[package]
name = "ps3decrs"
version = "2.0.1"
edition = "2024"
description = "PS3 ISO decryption tool."
repository = "https://github.com/Redrrx/ps3dec"
readme = "README.md"
license = "MIT"
keywords = ["ps3", "iso", "decryption", "bluray"]
categories = ["command-line-utilities", "cryptography"]
rust-version = "1.85"
include = ["src/**", "Cargo.toml", "README*", "LICENSE*"]
[dependencies]
clap = { version = "4.5.2", features = ["derive"] }
aes = "0.8.4"
hex = "0.4.3"
indicatif = "0.18.0"
rayon = "1.9.0"
generic-array = "1.2.0"
log = "0.4"
log4rs = "1.0"
chrono = "0.4"
num_cpus = "1.17.0"
[profile.release]
opt-level = 3
strip = true
lto = "fat"
[build]
rustflags = ["-C", "target-cpu=native"]
[lib]
name = "ps3dec"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "ps3decrs"
path = "src/main.rs"