Skip to content

Commit

Permalink
LOG-2734: A test exists to verify there are no ring dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
syedriko committed Jul 8, 2022
1 parent 2b8f3e0 commit aca782d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
!8.6-compose.repo
!thirdparty
!patch
!.cargo
!.cargo
!deny.toml
5 changes: 4 additions & 1 deletion Dockerfile.unit
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ RUN mkdir -p /src

WORKDIR /src
COPY . /src
RUN mkdir -p ~/.cargo/bin && ln -s /src/thirdparty/cargo-nextest/cargo-nextest-linux-$(arch) ~/.cargo/bin/cargo-nextest
RUN mkdir -p ~/.cargo/bin && \
for plugin in nextest deny; do \
ln -s /src/thirdparty/cargo-${plugin}/cargo-${plugin}-linux-$(arch) ~/.cargo/bin/cargo-${plugin}; \
done
4 changes: 2 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ ignore = [
]

[bans]
multiple-versions = "allow"
deny = [
# https://github.com/vectordotdev/vector/issues/11257
{ name = "tokio-util", version = ">=0.6.9" },
{ name = "ring", wrappers = ["azure_storage"] },
]
Binary file added thirdparty/cargo-deny/cargo-deny-linux-x86_64
Binary file not shown.

0 comments on commit aca782d

Please sign in to comment.