Skip to content

Commit

Permalink
update deps and cargo deny
Browse files Browse the repository at this point in the history
issues left for `cargo deny` are tracked in #1035
  • Loading branch information
dignifiedquire committed May 19, 2023
1 parent 0fa9851 commit 2ce4ca0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 17 deletions.
28 changes: 15 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ bytes = { version = "1.4", features = ["serde"] }
clap = { version = "4", features = ["derive"], optional = true }
config = { version = "0.13.1", default-features = false, features = ["toml", "preserve_order"] }
console = { version = "0.15.5", optional = true }
crypto_box = { version = "0.9.0-pre", features = ["serde", "chacha20"] }
crypto_box = { version = "0.9.0-rc.0", features = ["serde", "chacha20"] }
curve25519-dalek = "=4.0.0-rc.2"
data-encoding = { version = "2.3.3", optional = true }
default-net = "0.14.1"
Expand Down Expand Up @@ -66,9 +66,9 @@ serde-error = "0.1.2"
serdect = "0.2.0"
smallvec = { version = "1.10.0", features = ["serde", "const_new"] }
socket2 = "0.5.3"
ssh-key = { version = "0.6.0-pre.0", features = ["ed25519", "std", "rand_core"] }
ssh-key = { version = "0.6.0-rc.0", features = ["ed25519", "std", "rand_core"] }
stun-rs = "0.1.4"
subtle = "2.4.1"
subtle = "2.4"
surge-ping = "0.8.0"
tempfile = "3.4"
thiserror = "1"
Expand Down Expand Up @@ -131,5 +131,4 @@ panic = 'abort'
incremental = false

[patch.crates-io]
crypto_box = { git = "https://github.com/RustCrypto/nacl-compat", branch = "master" }
ed25519-dalek = { git = "https://github.com/dalek-cryptography/ed25519-dalek", branch = "main" }
7 changes: 7 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ allow = [
"OpenSSL",
"Unicode-DFS-2016",
"Zlib",
"MPL-2.0", # https://fossa.com/blog/open-source-software-licenses-101-mozilla-public-license-2-0/
]

[[licenses.clarify]]
Expand All @@ -19,3 +20,9 @@ expression = "MIT AND ISC AND OpenSSL"
license-files = [
{ path = "LICENSE", hash = 0xbd0eed23 },
]


[advisories]
ignore = [
"RUSTSEC-2020-0168" # mach is unmaintained
]

0 comments on commit 2ce4ca0

Please sign in to comment.