Files
script-kiddies-know-nothing/Cargo.toml

24 lines
432 B
TOML
Raw Normal View History

2025-09-02 15:35:49 +09:00
[workspace]
resolver = "3"
members = ["bf-macro"]
[package]
name = "reverse-engineer-is-stupid"
version = "0.1.0"
edition = "2024"
[dependencies]
smallvec = { version = "1.15", features = ["union", "const_generics", "const_new"] }
bf-macro = { path = "./bf-macro" }
hex = "0.4"
aes-gcm = "0.10"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
panic = "abort"
2025-09-02 15:56:01 +09:00
debug = false
strip = "symbols"
debug-assertions = false