We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd9372d commit 4fb0d14Copy full SHA for 4fb0d14
.github/workflows/release.yml
@@ -52,7 +52,7 @@ jobs:
52
strategy:
53
matrix:
54
arch: [amd64, arm64, arm]
55
- libc: [gnu, musl]
+ libc: [gnu] # musl
56
57
# If we're not actually building on a release tag, don't short-circuit on
58
# errors. This helps us know whether a failure is platform-specific.
linkerd2-proxy/src/main.rs
@@ -2,6 +2,7 @@
2
3
#![deny(rust_2018_idioms, clippy::disallowed_methods, clippy::disallowed_types)]
4
#![forbid(unsafe_code)]
5
+#![recursion_limit = "256"]
6
7
// Emit a compile-time error if no TLS implementations are enabled. When adding
8
// new implementations, add their feature flags here!
0 commit comments