Skip to content
Merged
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
176 changes: 176 additions & 0 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 @@ -5,6 +5,7 @@ edition = "2021"

[dependencies]
libc = "0.2.153"
borsh = { version = "1.3.1", features = ["derive"] }

[profile.dev]
panic = "abort"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ For when you need to transfer files between machines fast, but somehow it's not
saturating the network card. This tool transfers over multiple TCP connections
to try and saturate it.

Fastsync targets Linux only.

## Building

For your local machine:
Expand All @@ -29,5 +31,4 @@ On the receiving end, suppose we download with 32 TCP connections:

## Known issues

* The sender doesn't exit when it's done.
* It's too spammy.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.70.0"
channel = "1.74.0"
components = ["rustc", "cargo", "rustfmt", "clippy"]
targets = [
# Default regular build.
Expand Down
Loading