Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fe8e9ee
chore: update ant-node ref to rc-2026.4.1 branch
jacderida Apr 4, 2026
b7482d2
chore: bump ant-cli to 0.1.2-rc.3
jacderida Apr 4, 2026
d643d81
chore: update dependencies for ant-cli 0.1.2-rc.4
jacderida Apr 4, 2026
33b9c72
chore: bump ant-cli to 0.1.2-rc.4
jacderida Apr 4, 2026
ad3cf78
chore: update dependencies for ant-cli 0.1.2-rc.5
jacderida Apr 4, 2026
415f6ae
chore: bump ant-cli to 0.1.2-rc.5
jacderida Apr 4, 2026
9b132ab
chore: update dependencies for ant-cli 0.1.2-rc.6
jacderida Apr 5, 2026
6fddb95
chore: bump ant-cli to 0.1.2-rc.6
jacderida Apr 5, 2026
7e87fc0
chore: update dependencies for ant-cli 0.1.2-rc.7
jacderida Apr 5, 2026
40f2de5
chore: bump ant-cli to 0.1.2-rc.7
jacderida Apr 5, 2026
3394d4c
chore: update dependencies for ant-cli 0.1.2-rc.8
jacderida Apr 5, 2026
0928166
chore: bump ant-cli to 0.1.2-rc.8
jacderida Apr 5, 2026
d3586ef
chore: update dependencies for ant-cli 0.1.2-rc.9
jacderida Apr 5, 2026
84962bb
chore: bump ant-cli to 0.1.2-rc.9
jacderida Apr 5, 2026
49fd9c4
chore: update dependencies for ant-cli 0.1.2-rc.10
jacderida Apr 5, 2026
d008a5d
chore: bump ant-cli to 0.1.2-rc.10
jacderida Apr 5, 2026
ba7d707
chore: update dependencies for ant-cli 0.1.2-rc.11
jacderida Apr 5, 2026
8c8256a
chore: bump ant-cli to 0.1.2-rc.11
jacderida Apr 5, 2026
2e03373
chore: update dependencies for ant-cli 0.1.2-rc.12
jacderida Apr 6, 2026
ddd0f1d
chore: bump ant-cli to 0.1.2-rc.12
jacderida Apr 6, 2026
5107b70
chore: update dependencies for ant-cli 0.1.2-rc.13
jacderida Apr 6, 2026
4327098
chore: bump ant-cli to 0.1.2-rc.13
jacderida Apr 6, 2026
f8353b8
chore: update dependencies for ant-cli 0.1.2-rc.14
jacderida Apr 6, 2026
aef91c2
chore: bump ant-cli to 0.1.2-rc.14
jacderida Apr 6, 2026
87bc703
fix: patch saorsa-core and saorsa-transport with NAT traversal fixes
grumbach Apr 8, 2026
749d00b
chore: update saorsa-transport to 664ce20 (deferred connection close …
jacderida Apr 8, 2026
9ac56e9
chore: update saorsa-transport to 2cabf2b5 (IPv4/IPv6 normalization fix)
jacderida Apr 8, 2026
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
109 changes: 92 additions & 17 deletions Cargo.lock

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

20 changes: 20 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
[workspace]
members = ["ant-core", "ant-cli"]
resolver = "2"

# NAT traversal fixes: patch saorsa-core and saorsa-transport to branches
# with proven fixes (tested via Mac upload to NAT testnet, 3/3 success).
#
# saorsa-core fix/clock-skew-tolerance:
# - MAX_FUTURE_SECS: 30 -> 300 (tolerate real-world clock drift)
#
# saorsa-transport round4-combined (8 fixes):
# - send_ack_timeout 500ms -> 5s
# - accept loop dedup keeps newer connection
# - scope-aware reachability model
# - relay fallback rotation + session reuse + cleanup
# - quality-aware coordinator selection
#
# Once these branches are merged into rc-2026.4.1, remove this patch section.
[patch."https://github.com/saorsa-labs/saorsa-core.git"]
saorsa-core = { git = "https://github.com/grumbach/saorsa-core.git", branch = "fix/clock-skew-tolerance" }

[patch."https://github.com/saorsa-labs/saorsa-transport.git"]
saorsa-transport = { git = "https://github.com/grumbach/saorsa-transport.git", branch = "round4-combined" }
2 changes: 1 addition & 1 deletion ant-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ant-cli"
version = "0.1.2-rc.2"
version = "0.1.2-rc.14"
edition = "2021"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion ant-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ tracing = "0.1"
bytes = "1"
lru = "0.16"
rand = "0.8"
ant-node = { git = "https://github.com/WithAutonomi/ant-node", rev = "6dfc7178a940fc842ab3c6542265d9750a08b060" }
ant-node = { git = "https://github.com/WithAutonomi/ant-node", branch = "rc-2026.4.1" }
saorsa-pqc = "0.5"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

Expand Down
Loading