Skip to content

Commit d2932ba

Browse files
authored
[Drop CLI] Transfer Speedup (#104)
1 parent 69ca7d8 commit d2932ba

File tree

25 files changed

+1561
-358
lines changed

25 files changed

+1561
-358
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
matrix:
3434
# We also run on macOS arm in the weekly workflow.
35-
os: [ubuntu-latest, windows-latest, macos-14]
35+
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
3636

3737
steps:
3838
- uses: actions/checkout@v4
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ${{ matrix.os }}
6767
strategy:
6868
matrix:
69-
os: [ubuntu-latest, windows-latest, macos-14]
69+
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
7070
needs: build-and-test
7171

7272
steps:

.github/workflows/cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
mac-intel:
4949
name: MacOS Intel
50-
runs-on: macos-14
50+
runs-on: macos-13
5151

5252
steps:
5353
- uses: actions/checkout@v4
@@ -65,7 +65,7 @@ jobs:
6565

6666
mac-arm:
6767
name: MacOS ARM
68-
runs-on: macos-13-xlarge
68+
runs-on: macos-14
6969

7070
steps:
7171
- uses: actions/checkout@v4

.github/workflows/drop-cli-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
archive: zip
4747

4848
# macOS targets
49-
- os: macos-latest
49+
- os: macos-13
5050
target: x86_64-apple-darwin
5151
archive: tar.gz
52-
- os: macos-latest
52+
- os: macos-14
5353
target: aarch64-apple-darwin
5454
archive: tar.gz
5555

.github/workflows/weekly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
os: [ubuntu-latest, windows-latest, macos-14, macos-13-xlarge]
17+
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
1818

1919
steps:
2020
- uses: actions/checkout@v4

drop-core/cli/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ toml = "0.8"
3030

3131
dropx-receiver = { path = "../exchanges/receiver" }
3232
dropx-sender = { path = "../exchanges/sender" }
33+
indicatif = "0.18.0"
3334

3435
[dev-dependencies]
3536
tempfile = "3.0"

0 commit comments

Comments
 (0)