protwrap

Check-in Differences
Login

Check-in Differences

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
3
4
5
6
7
8
9
10
[package]
name = "protwrap"
version = "0.3.1"
edition = "2021"
license = "0BSD"
# https://crates.io/category_slugs
categories = [ "asynchronous", "network-programming" ]
keywords = [ "network", "wrapper" ]
repository = "https://repos.qrnch.tech/pub/protwrap"
description = "Thin protocol wrapper for network applications."


|







1
2
3
4
5
6
7
8
9
10
[package]
name = "protwrap"
version = "0.3.2"
edition = "2021"
license = "0BSD"
# https://crates.io/category_slugs
categories = [ "asynchronous", "network-programming" ]
keywords = [ "network", "wrapper" ]
repository = "https://repos.qrnch.tech/pub/protwrap"
description = "Thin protocol wrapper for network applications."

Changes to src/tokio/server/listener.rs.

83
84
85
86
87
88
89

90
91
92
93
94
95
96

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),

      #[allow(unreachable_patterns)]
      a @ SockAddr::TokioUnix(_) => Err(a)
    }
  }
}

#[cfg(unix)]







>







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
5
6
7
8
9
10
11
12










13
14
15
16
17
18
19
# Change Log



## [Unreleased]

[Details](/vdiff?from=protwrap-0.3.1&to=trunk)

### Added

### Changed

### Removed











---

## [0.3.1] - 2024-10-07

[Details](/vdiff?from=protwrap-0.3.0&to=protwrap-0.3.1)

### Changed


>
>


|







>
>
>
>
>
>
>
>
>
>







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]

[Details](/vdiff?from=protwrap-0.3.2&to=trunk)

### Added

### Changed

### Removed

---

## [0.3.2] - 2024-10-15

[Details](/vdiff?from=protwrap-0.3.1&to=protwrap-0.3.2)

### Changed

- Bug Fix: Fix Windows build.

---

## [0.3.1] - 2024-10-07

[Details](/vdiff?from=protwrap-0.3.0&to=protwrap-0.3.1)

### Changed