Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix publish issue #706

Merged
merged 2 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ license-files = [
# Deny multiple versions or wildcard dependencies.
multiple-versions = "deny"
wildcards = "deny"
# failure-server is an internal package used only in testing that we do not want to publish to
# crates.io. When including it in tough's dev dependencies, it is necessary to do so without a
# version number or else cargo publish will fail. The lack of a version number causes cargo deny
# to ban failure-server as a wildcard-versioned dependency. The following line allows us to refer
# to our own internal packages without a version number.
allow-wildcard-paths = true

skip = [
# http-test is using an old version of bstr
webern marked this conversation as resolved.
Show resolved Hide resolved
Expand All @@ -73,8 +79,6 @@ skip = [
{ name = "fastrand", version = "=1.9" },
# several dependencies are using an old version of bitflags
{ name = "bitflags", version = "=1.3" },
# transient dependencies are using an older versions of regex-automata
{ name = "regex-automata", version = "=0.1" },
{ name = "regex-automata", version = "=0.4" },
# several dependencies are using an old version of socket2
{ name = "socket2", version = "=0.4" },
Expand Down
2 changes: 1 addition & 1 deletion tough/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ url = "2"
walkdir = "2"

[dev-dependencies]
failure-server = { path = "../integ/failure-server", version = "0.1" }
failure-server = { path = "../integ/failure-server" }
hex-literal = "0.4"
httptest = "0.15"
maplit = "1"
Expand Down