Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
40c683e
Added persistence of node-key
jeroenvanmaanen Oct 19, 2025
90f335b
Fixed Windows issues
jeroenvanmaanen Oct 22, 2025
93507a4
Merge branch 'main' into add-persistence-of-node-key
jeroenvanmaanen Oct 22, 2025
f5d51eb
Fixed merge
jeroenvanmaanen Oct 22, 2025
68c0a5b
Use SSH format for key persistence.
jeroenvanmaanen Oct 22, 2025
209a8b8
Addressed review comments.
jeroenvanmaanen Oct 23, 2025
8493270
Fixed more Windows issues
jeroenvanmaanen Oct 23, 2025
bd7b6d2
Replaced content of PR by crate `iroh-persist`
jeroenvanmaanen Oct 30, 2025
6be34ad
Removed unused dependency on crate `ssh-key`
jeroenvanmaanen Nov 3, 2025
bc53f85
Bumped iroh-persist to version `0.1.1`
jeroenvanmaanen Nov 4, 2025
1d4a63d
Fail on parse errors and write errors rather than falling back to using
jeroenvanmaanen Nov 4, 2025
00d8e46
Merge remote-tracking branch 'n0/main' into add-persistence-of-node-key
jeroenvanmaanen Nov 9, 2025
05b3ef9
Bumped `iroh-persist` to 0.1.5
jeroenvanmaanen Nov 14, 2025
a21f6b9
Removed unnecessary dependency on `dirs:6.0.0`
jeroenvanmaanen Nov 14, 2025
9f43f00
Fixed unit tests (there is no longer a line with the secret key)
jeroenvanmaanen Dec 1, 2025
fabb7dc
Merge remote-tracking branch 'n0/main' into add-persistence-of-node-key
jeroenvanmaanen Jan 21, 2026
3ca65e1
Merge remote-tracking branch 'n0/main' into add-persistence-of-node-key
jeroenvanmaanen Mar 17, 2026
87cff67
Fix for unit-tests on non-unix systems
jeroenvanmaanen Mar 18, 2026
aec073c
Merge branch 'main' into add-persistence-of-node-key
jeroenvanmaanen Apr 25, 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
137 changes: 135 additions & 2 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ iroh = { version = "0.94", default-features = false }
iroh-tickets= { version = "0.1" }
quinn = { version = "0.14", package = "iroh-quinn" }
rand = "0.9.2"
ssh-key = { version = "0.7.0-rc.3", features = ["ed25519"] }

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not needed anymore

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed.

tokio = { version = "1.34.0", features = ["full"] }
tokio-util = "0.7.10"
tracing = "0.1.40"
Expand Down
Loading
Loading