Skip to content

Commit

Permalink
Merge pull request #706 from webern/fix-publish-issue
Browse files Browse the repository at this point in the history
Fix publish issue
  • Loading branch information
webern authored Nov 8, 2023
2 parents e90ce58 + 3655b01 commit 3c36347
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
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
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

0 comments on commit 3c36347

Please sign in to comment.