Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "nightly-2023-01-18"
channel = "nightly-2023-12-01"
4 changes: 2 additions & 2 deletions snocat-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snocat-cli"
description = "Streaming Network Overlay Connection Arbitration Tunnel"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
rust-version = "1.58.0"
authors = ["Microsoft Corporation", "Zoey <Dessix@Dessix.net>"]
edition = "2021"
Expand All @@ -11,7 +11,7 @@ categories = ["network-programming", "command-line-utilities"]
include = ["src/**/*", "build.rs", "Cargo.toml", "LICENSE*", "*.md"]

[dependencies]
snocat = { version = "^0.8.0-alpha.5", path = "../snocat" }
snocat = { version = "^0.8.0-alpha.6", path = "../snocat" }
anyhow = "~1.0.43"
downcast-rs = "1.2"
clap = "3.1"
Expand Down
4 changes: 4 additions & 0 deletions snocat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Upgraded Quinn to 9.3 for UDP GSO and UDP GRO support; this update broke
several internal API assumptions and may lead to further simplifications
around incoming connection and (bi/uni)stream handling.

- Fixed pointer-based accesses to `TunnelUplink::addr()` so authentication now
captures the underlying tunnel's real `TunnelAddressInfo` instead of always
reporting `Unidentified`. (PR #7)

## [0.7.0] - 2022-10-29

### Hybrid Eventually-Consistent Tunnel Repositories (0.6.0-alpha.1)
Expand Down
2 changes: 1 addition & 1 deletion snocat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "snocat"
description = "Streaming Network Overlay Connection Arbitration Tunnel"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
rust-version = "1.63.0"
authors = ["Microsoft Corporation", "Zoey <Dessix@Dessix.net>"]
edition = "2021"
Expand Down