Skip to content

Commit 5e0c477

Browse files
committed
wip
1 parent 81514cd commit 5e0c477

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

Earthfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:feat/cargo-deny-check AS mdlint-ci
4-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:feat/cargo-deny-check AS cspell-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:feat/deny.toml AS mdlint-ci
4+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:feat/deny.toml AS cspell-ci
55

66
FROM debian:stable-slim
77

docs/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:feat/cargo-deny-check AS docs-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/docs:feat/deny.toml AS docs-ci
44

55
IMPORT .. AS repo
66

rust/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:feat/cargo-deny-check AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:feat/deny.toml AS rust-ci
44

55
COPY_SRC:
66
FUNCTION

rust/c509-certificate/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::feat/cargo-deny-check AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::feat/deny.toml AS rust-ci
44

55
IMPORT .. AS rust-local
66
IMPORT ../.. AS repo

rust/cbork/Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::feat/cargo-deny-check AS rust-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust::feat/deny.toml AS rust-ci
44

55
IMPORT .. AS rust-local
66

rust/deny.toml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ targets = [
1616

1717
[advisories]
1818
version = 2
19-
ignore = [
20-
{ id = "RUSTSEC-2024-0370", reason = "`proc-macro-error` is used by crates we rely on, we can't control what they use."},
21-
]
19+
ignore = []
2220

2321
[bans]
2422
multiple-versions = "warn"
@@ -34,7 +32,13 @@ deny = [
3432
# { crate = "cmake", use-instead = "cc" },
3533
# { crate = "windows", reason = "bloated and unnecessary", use-instead = "ideally inline bindings, practically, windows-sys" },
3634
]
37-
skip = []
35+
skip = [
36+
# { crate = "[email protected]", reason = "https://github.com/seanmonstar/reqwest/pull/2130 should be in the next version" },
37+
# { crate = "[email protected]", reason = "gix 0.59 was yanked, see https://github.com/Byron/gitoxide/issues/1309" },
38+
# { crate = "[email protected]", reason = "strum_macros uses this old version" },
39+
# { crate = "[email protected]", reason = "gix-transport pulls in this old version, as well as a newer version via reqwest" },
40+
# { crate = "[email protected]", reason = "gix-transport pulls in this old version, as well as a newer version via reqwest" },
41+
]
3842
skip-tree = [
3943
{ crate = "[email protected]", reason = "a foundational crate for many that bumps far too frequently to ever have a shared version" },
4044
]
@@ -47,6 +51,12 @@ unknown-git = "deny"
4751
allow-git = [
4852
"https://github.com/input-output-hk/catalyst-libs.git",
4953
"https://github.com/input-output-hk/catalyst-pallas.git",
54+
"https://github.com/input-output-hk/catalyst-mithril.git",
55+
"https://github.com/bytecodealliance/wasmtime",
56+
"https://github.com/aldanor/hdf5-rust",
57+
"https://github.com/txpipe/vrf",
58+
"https://github.com/txpipe/kes",
59+
"https://github.com/txpipe/curve25519-dalek",
5060
]
5161

5262
[licenses]

0 commit comments

Comments
 (0)