Skip to content

Commit

Permalink
fixup! fed6c62
Browse files Browse the repository at this point in the history
  • Loading branch information
habnabit committed Jul 5, 2024
1 parent 0a945a2 commit 22afcfc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ jobs:
- runner: macos-12
- runner: macos-14
- runner: windows-latest
# target: x64
# - runner: windows-latest
# target: x86
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
Expand All @@ -29,6 +26,6 @@ jobs:
args: --all-features --no-fail-fast --workspace
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cllvm-args=--inline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cllvm-args=--inline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
- uses: actions-rs/grcov@v0.1
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ crate-type = ["cdylib"]
[features]
default = ["python"]
python = ["pyo3"]
testing-checks = []

[dependencies]
pyo3 = { version = "0.21.1", optional = true }
Expand Down
12 changes: 6 additions & 6 deletions tiny-keccak-1536/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ categories = ["cryptography", "no-std"]
[dependencies]
crunchy = "0.2.2"

[profile.dev]
opt-level = 3 # Controls the --opt-level the compiler builds with
debug = false # Controls whether the compiler passes `-g`
# [profile.dev]
# opt-level = 3 # Controls the --opt-level the compiler builds with
# debug = false # Controls whether the compiler passes `-g`

[profile.test]
opt-level = 3 # Controls the --opt-level the compiler builds with
debug = false # Controls whether the compiler passes `-g`
# [profile.test]
# opt-level = 3 # Controls the --opt-level the compiler builds with
# debug = false # Controls whether the compiler passes `-g`

[badges]
travis-ci = { repository = "debris/tiny-keccak", branch = "master"}
Expand Down

0 comments on commit 22afcfc

Please sign in to comment.