Compare commits

..

2 Commits

Author SHA1 Message Date
Maximilian
b84acc83bc Add release profiles 2023-01-24 13:00:46 -06:00
Maximilian
949436dcff Switch version to 1.0.1, given the bug/performance fixes 2023-01-24 12:57:20 -06:00
2 changed files with 15 additions and 1 deletions

14
.cargo/config.toml Normal file
View File

@ -0,0 +1,14 @@
[profile.release]
opt-level = "s"
[target.x86_64-pc-windows-msvc]
rustflags = ["-C", "target-cpu=native", "-C", "codegen-units=8", "-C", "debuginfo=0", "-C", "profile-generate", "-C", "inline-threshold=2000"]
[target.x86_64-unknown-linux-gnu]
rustflags = ["-C", "target-cpu=native", "-C", "codegen-units=8", "-C", "debuginfo=0", "-C", "profile-generate", "-C", "inline-threshold=2000"]
[target.i686-pc-windows-msvc]
rustflags = ["-C", "target-cpu=native", "-C", "codegen-units=4", "-C", "debuginfo=0", "-C", "profile-generate", "-C", "inline-threshold=2000"]
[target.i686-unknown-linux-gnu]
rustflags = ["-C", "target-cpu=native", "-C", "codegen-units=4", "-C", "debuginfo=0", "-C", "profile-generate", "-C", "inline-threshold=2000"]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rust_pass" name = "rust_pass"
version = "1.0.0" version = "1.0.1"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html