Skip to content

Commit

Permalink
ci: Introduce 'dev-ci' profile in Cargo.toml (#12)
Browse files Browse the repository at this point in the history
- A new profile "dev-ci" has been created in the `Cargo.toml` file,
  • Loading branch information
huitseeker authored Jan 12, 2024
1 parent 39e3866 commit a252fb6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,12 @@ harness = false
[[bench]]
name = "pasta_msm"
harness = false


[profile.dev-ci]
inherits = "dev"
# By compiling dependencies with optimizations, performing tests gets much faster.
opt-level = 3
lto = "thin"
incremental = false
codegen-units = 16

0 comments on commit a252fb6

Please sign in to comment.