Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From protwrap-0.3.1 To protwrap-0.3.2
2024-10-15
| ||
10:08 | Change log maintenance. check-in: bc130369aa user: jan tags: trunk | |
10:02 | Release maintenance. check-in: 74d883c5fd user: jan tags: protwrap-0.3.2, trunk | |
09:58 | Fix Windows build. check-in: f5bad5e805 user: jan tags: trunk | |
2024-10-07
| ||
20:11 | Warning sign in change log. check-in: d97cf13436 user: jan tags: trunk | |
20:08 | Release maintenance. check-in: 93d43d7eec user: jan tags: protwrap-0.3.1, trunk | |
20:05 | Derive Debug and Clone on client's Connector. check-in: 89e8cb77fc user: jan tags: trunk | |
Changes to Cargo.toml.
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | [package] name = "protwrap" |
︙ |
Changes to src/tokio/server/listener.rs.
︙ | |||
83 84 85 86 87 88 89 90 91 92 93 94 95 96 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | + | impl TryFrom<SockAddr> for std::net::SocketAddr { type Error = SockAddr; fn try_from(orig: SockAddr) -> Result<Self, Self::Error> { match orig { SockAddr::Std(sa) => Ok(sa), #[cfg(unix)] #[allow(unreachable_patterns)] a @ SockAddr::TokioUnix(_) => Err(a) } } } #[cfg(unix)] |
︙ |
Changes to www/changelog.md.
1 2 3 4 | 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 | + + - + + + + + + + + + + + | # Change Log ⚠️ indicates a breaking change. ## [Unreleased] |
︙ |