Skip to content

Commit 73e9f7c

Browse files
authored
chore: updates cargo deny and removes git deps on vise (#501)
# What ❔ <!-- What are the changes this PR brings about? --> <!-- Example: This PR adds a PR template to the repo. --> <!-- (For bigger PRs adding more context is appreciated) --> ## Why ❔ <!-- Why are these changes done? What goal do they contribute to? What are the principles behind them? --> <!-- Example: PR templates ensure PR reviewers, observers, and future iterators are in context about the evolution of repos. --> ## Checklist <!-- Check your PR fulfills the following items. --> <!-- For draft PRs check the boxes as you complete them. --> - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `cargo fmt`.
1 parent bf72996 commit 73e9f7c

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/cargo-deny.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424

2525
steps:
2626
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
27-
- uses: EmbarkStudios/cargo-deny-action@v1
27+
- uses: EmbarkStudios/cargo-deny-action@v2
2828
with:
2929
command: check ${{ matrix.checks }}

Cargo.lock

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ hex = "0.4.3"
5353
pretty_assertions = "1.4.0"
5454
sqlx = "0.8.1"
5555
chrono = { version = "0.4.38", default-features = false }
56-
vise = { git = "https://github.com/matter-labs/vise.git" }
57-
vise-exporter = { git = "https://github.com/matter-labs/vise.git" }
56+
vise = "0.2.0"
57+
vise-exporter = "0.2.0"
5858
client = { path = "./client" }
5959
chain-events = { path = "./chain-events" }
6060
storage = { path = "./storage" }

deny.toml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1+
[graph]
12
targets = []
23
all-features = false
34
no-default-features = false
5+
6+
[output]
47
feature-depth = 1
58

69
[advisories]
10+
version = 2
711
db-path = "~/.cargo/advisory-db"
812
db-urls = ["https://github.com/rustsec/advisory-db"]
9-
vulnerability = "deny"
10-
unmaintained = "warn"
1113
yanked = "warn"
12-
notice = "warn"
1314
ignore = [
1415
"RUSTSEC-2023-0052"
1516
]
1617

1718
[licenses]
18-
unlicensed = "deny"
19-
copyleft = "deny"
19+
version = 2
2020
allow = [
2121
"MIT",
2222
"Apache-2.0",
@@ -29,9 +29,6 @@ allow = [
2929
"BSD-3-Clause",
3030
"OpenSSL",
3131
]
32-
deny = []
33-
allow-osi-fsf-free = "neither"
34-
default = "deny"
3532
confidence-threshold = 0.8
3633
exceptions = []
3734

0 commit comments

Comments
 (0)