-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
67 lines (62 loc) · 2.19 KB
/
Copy pathdeny.toml
File metadata and controls
67 lines (62 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[graph]
all-features = true
no-default-features = false
[advisories]
version = 2
yanked = "deny"
ignore = [
# rsa 0.9.x timing sidechannel via jsonwebtoken→octocrab; no patch available.
# This is a local desktop app — not exposed as a server — so the risk is acceptable.
"RUSTSEC-2023-0071",
# aes 0.9.0 is yanked but pulled transitively via russh 0.60→aes-gcm 0.11.0-rc.3;
# the russh RC-crypto chain can't move off it yet. Yank was not a security advisory.
# (aes 0.8.4 was un-yanked upstream, so its old entry is gone.) Revisit when russh
# bumps its aes-gcm off the rc.
{ crate = "aes@0.9.0", reason = "yanked, no upgrade path through russh 0.60 aes-gcm rc; not a security yank" },
]
unmaintained = "workspace"
[licenses]
version = 2
allow = [
"Apache-2.0",
"MIT",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-DFS-2016",
"Unicode-3.0",
"CC0-1.0",
"Zlib",
"0BSD",
"MPL-2.0",
"CDLA-Permissive-2.0",
]
confidence-threshold = 0.93
# The vendored dev-tunnels SDK (git, 0.1.0) ships no `license` field in its
# manifest. The repo (github.com/microsoft/dev-tunnels) is MIT. Assert it.
[[licenses.clarify]]
crate = "tunnels"
expression = "MIT"
license-files = []
[bans]
multiple-versions = "warn"
wildcards = "deny"
# Intra-workspace `{ path = ... }` deps resolve to `*`; that's expected, not a real wildcard.
allow-wildcard-paths = true
deny = [
# Banned for OUR code, but the vendored dev-tunnels SDK forces openssl via two
# paths: russh 0.37 (its pinned fork) and tokio-tungstenite→native-tls. Exempt
# only those SDK parents; any new route to openssl still trips the ban.
{ name = "openssl", reason = "use rustls; OpenSSL adds C build complexity", wrappers = ["russh", "russh-keys", "native-tls"] },
{ name = "openssl-sys", reason = "see openssl above", wrappers = ["openssl", "native-tls"] },
]
skip-tree = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
# Vendored per stack design: dev-tunnels SDK (no crates.io release) and the
# Microsoft russh fork the SDK pins. See CLAUDE.md §Dev Tunnels.
allow-git = [
"https://github.com/microsoft/dev-tunnels",
"https://github.com/microsoft/vscode-russh",
]