banker-algorithm/Cargo.toml
Ahmet Kaan GÜMÜŞ 04f22c2763 feat: restart
fix: error handling
build: optimization and forbid unsafe
2024-01-15 23:08:11 +03:00

18 lines
258 B
TOML

[package]
name = "banker-algorithm"
version = "0.1.0"
edition = "2021"
[profile.release]
strip = "symbols"
opt-level = 3
overflow-checks = true
lto = true
codegen-units = 1
panic = "abort"
[lints.rust]
unsafe_code = "forbid"
[dependencies]
rand = "0.8.5"