Skip to content

Commit 113e76a

Browse files
authored
feat: Bump dependencies & update cargo deny (#132)
1 parent 670d9c5 commit 113e76a

File tree

3 files changed

+17
-27
lines changed

3 files changed

+17
-27
lines changed

.github/workflows/cargo-license.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ jobs:
44
cargo-deny:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v3
8-
- uses: EmbarkStudios/cargo-deny-action@v1
7+
- uses: actions/checkout@v3
8+
- uses: EmbarkStudios/cargo-deny-action@3fd3802e88374d3fe9159b834c7714ec57d6c979 # v2.0.15

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ wrapper-prover = { version = "=0.155.5", path = "crates/wrapper-prover", package
2929

3030
# These dependencies should be shared by all the crates.
3131
# zksync-crypto repository
32-
boojum = "=0.32.6"
33-
fflonk-cpu = {package = "fflonk", version = "=0.32.6"}
34-
franklin-crypto = "=0.32.6"
35-
rescue_poseidon = "=0.32.6"
36-
snark_wrapper = "=0.32.6"
32+
boojum = "=0.32.7"
33+
fflonk-cpu = { package = "fflonk", version = "=0.32.7" }
34+
franklin-crypto = "=0.32.7"
35+
rescue_poseidon = "=0.32.7"
36+
snark_wrapper = "=0.32.7"
3737

3838
# zksync-protocol repository
39-
circuit_definitions = { version = "=0.153.5" }
40-
zkevm_test_harness = { version = "=0.153.5" }
39+
circuit_definitions = { version = "=0.153.6" }
40+
zkevm_test_harness = { version = "=0.153.6" }
4141

4242
[profile.release]
4343
debug = "line-tables-only"

deny.toml

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1+
[graph]
2+
targets = []
13
all-features = false
24
no-default-features = false
35

46
[advisories]
5-
vulnerability = "deny"
6-
unmaintained = "warn"
7-
yanked = "warn"
8-
notice = "warn"
97
ignore = [
10-
#"RUSTSEC-0000-0000",
8+
"RUSTSEC-2024-0370", # proc-macro-error (1.0.4) is unmaintained
9+
"RUSTSEC-2024-0436", # paste (1.0.15) is unmaintained
10+
"RUSTSEC-2024-0388", # derivative (2.2.0) is unmaintained
11+
"RUSTSEC-2025-0141", # bincode (1.3.3) is unmaintained
12+
"RUSTSEC-2024-0375", # atty (0.2.14) is unmaintained
13+
"RUSTSEC-2021-0139", # ansi_term (0.12.1) is unmaintained
1114
]
1215

1316
[licenses]
14-
unlicensed = "deny"
1517
allow = [
1618
#"Apache-2.0 WITH LLVM-exception",
1719
"MIT",
@@ -26,20 +28,8 @@ allow = [
2628
"Zlib",
2729
"Unicode-3.0",
2830
]
29-
deny = [
30-
#"Nokia",
31-
]
32-
copyleft = "warn"
33-
allow-osi-fsf-free = "neither"
34-
default = "deny"
3531
confidence-threshold = 0.8
36-
exceptions = [
37-
# Each entry is the crate and version constraint, and its specific allow
38-
# list
39-
#{ allow = ["Zlib"], name = "adler32", version = "*" },
40-
]
4132

42-
unused-allowed-license = "allow"
4333

4434
[licenses.private]
4535
ignore = false

0 commit comments

Comments
 (0)