Skip to content

Commit

Permalink
Merge support for multiple files (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruuda committed Jul 22, 2024
2 parents a089c19 + 745dcb9 commit 275bf83
Show file tree
Hide file tree
Showing 5 changed files with 549 additions and 114 deletions.
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

0 comments on commit 275bf83

Please sign in to comment.