24 lines
619 B
TOML
24 lines
619 B
TOML
[package]
|
|
name = "isprime"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
num = "0.4"
|
|
thread-priority = "1.1"
|
|
rand = "0.8"
|
|
num-bigint = { default-features = false, version = "0.4" }
|
|
once_cell = "1.19"
|
|
|
|
[profile.release]
|
|
lto = true # Enable link-time optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations
|
|
panic = 'abort' # Abort on panic
|
|
strip = true # Strip symbols from binary; remove pdb
|
|
overflow-checks = false
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|