Skip to content

Commit

Permalink
Merge pull request #112 from makr11st/feature/optimize_size_release
Browse files Browse the repository at this point in the history
Add size optimization for release profile.
  • Loading branch information
makr11st committed Sep 2, 2023
2 parents d01464a + f7e864b commit 5542b20
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusty_falcon"
version = "0.3.2"
version = "0.3.3"
authors = ["CrowdStrike Inc"]
description = "Rust bindings for CrowdStrike Falcon API"
homepage = "https://github.com/CrowdStrike/rusty-falcon"
Expand All @@ -26,3 +26,8 @@ url = "2.4.0"
[dev-dependencies]
clap = { version = "4.3", features = ["derive"] }
tokio = { version = "1.30", features = ["rt-multi-thread", "macros"] }

[profile.release]
codegen-units = 1
lto = "thin"
opt-level = "z"

0 comments on commit 5542b20

Please sign in to comment.