Skip to content

Commit

Permalink
Merge pull request #93 from syedriko/syedriko_log_2734
Browse files Browse the repository at this point in the history
LOG-2734: A test exists to verify there are no ring dependencies
  • Loading branch information
syedriko authored Jul 10, 2022
2 parents 348a8a5 + b092682 commit a4f3195
Show file tree
Hide file tree
Showing 4 changed files with 9 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
6 changes: 5 additions & 1 deletion Dockerfile.unit
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,9 @@ RUN mkdir -p /src

WORKDIR /src
COPY . /src

RUN chmod -R 777 /src $CARGO_HOME
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 a4f3195

Please sign in to comment.