Index: .efiles ================================================================== --- .efiles +++ .efiles @@ -1,9 +1,9 @@ Cargo.toml README.md www/index.md -www/changelist.md +www/changelog.md src/lib.rs src/listener.rs src/conn.rs examples/simple.rs examples/per_listener_ctx.rs Index: Cargo.toml ================================================================== --- Cargo.toml +++ Cargo.toml @@ -1,8 +1,8 @@ [package] name = "lstngrp" -version = "0.0.1" +version = "0.0.2" edition = "2021" license = "0BSD" # https://crates.io/category_slugs categories = [ "network-programming", "asynchronous" ] keywords = [ "network", "server", "listen", "protwrap" ] @@ -32,9 +32,9 @@ tokio = { version = "1.39.2", features = [ "macros", "net", "rt", "sync" ] } [dev-dependencies] -tokio = { version = "1.38.0", features = [ +tokio = { version = "1.39.2", features = [ "io-util", "rt-multi-thread", "time" ] } Index: src/listener.rs ================================================================== --- src/listener.rs +++ src/listener.rs @@ -74,10 +74,11 @@ { /// protwrap Acceptor callback for when a bound was successful async fn bound(&mut self, listener: &Listener, sa: SockAddr) { let addr = match &sa { SockAddr::Std(std) => Some(std.to_string()), + #[cfg(unix)] SockAddr::TokioUnix(_) => None }; // Forward bound() to the listen group application callback Handler self.lhandler.bound(listener, self.lid.clone(), sa).await; DELETED www/changelist.md Index: www/changelist.md ================================================================== --- www/changelist.md +++ /dev/null @@ -1,18 +0,0 @@ -# Change Log - -## [Unreleased] - -[Details](/vdiff?from=lstngrp-0.0.1&to=trunk) - -### Added - -### Changed - -### Removed - ---- - -## [0.0.1] - 2024-08-06 - -Initial release. - ADDED www/changelog.md Index: www/changelog.md ================================================================== --- /dev/null +++ www/changelog.md @@ -0,0 +1,28 @@ +# Change Log + +## [Unreleased] + +[Details](/vdiff?from=lstngrp-0.0.2&to=trunk) + +### Added + +### Changed + +### Removed + +--- + +## [0.0.2] - 2024-08-20 + +[Details](/vdiff?from=lstngrp-0.0.1&to=lstngrp-0.0.2) + +### Changed + +- Windows build fix: Put unixy-specific varaiant behind `cfg(unix)` gate. + +--- + +## [0.0.1] - 2024-08-06 + +Initial release. +