Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit f598b61

Browse files
Merge pull request #891 from MutinyWallet/update-deps
Update secp256k1-sys in Cargo.lock
2 parents dbdba78 + cdc5f43 commit f598b61

8 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
- uses: actions-rs/toolchain@v1
1212
with:
13-
toolchain: nightly
13+
toolchain: nightly-2023-10-24
1414
components: clippy
1515
target: wasm32-unknown-unknown
1616
override: true
@@ -45,7 +45,7 @@ jobs:
4545

4646
- uses: actions-rs/toolchain@v1
4747
with:
48-
toolchain: nightly
48+
toolchain: nightly-2023-10-24
4949
components: clippy
5050
target: wasm32-unknown-unknown
5151
override: true
@@ -68,11 +68,11 @@ jobs:
6868

6969
- name: Build wasm
7070
env:
71-
RUSTUP_TOOLCHAIN: nightly
71+
RUSTUP_TOOLCHAIN: nightly-2023-10-24
7272
run: wasm-pack build ./mutiny-wasm --release --weak-refs --target web --scope mutinywallet
7373

7474
- name: Publish wasm
7575
run: wasm-pack publish --access public -t web
7676
env:
77-
RUSTUP_TOOLCHAIN: nightly
77+
RUSTUP_TOOLCHAIN: nightly-2023-10-24
7878
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/test.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,16 @@ jobs:
2424
- name: Install nightly toolchain
2525
uses: actions-rs/toolchain@v1
2626
with:
27-
toolchain: nightly
28-
target: wasm32-unknown-unknown
27+
toolchain: nightly-2023-10-24
2928
components: rustfmt
3029
profile: minimal
3130

3231
- name: Check formatting
3332
run: |
34-
cargo +nightly fmt -- --check
33+
cargo +nightly-2023-10-24 fmt -- --check
3534
3635
- name: Check docs
37-
run: cargo +nightly doc
36+
run: cargo +nightly-2023-10-24 doc
3837

3938
website:
4039
name: Build WASM binary
@@ -43,7 +42,7 @@ jobs:
4342
- uses: actions/checkout@v3
4443
- uses: actions-rs/toolchain@v1
4544
with:
46-
toolchain: nightly
45+
toolchain: nightly-2023-10-24
4746
target: wasm32-unknown-unknown
4847
override: true
4948
profile: minimal
@@ -65,20 +64,20 @@ jobs:
6564
6665
- name: Build wasm package
6766
env:
68-
RUSTUP_TOOLCHAIN: nightly
67+
RUSTUP_TOOLCHAIN: nightly-2023-10-24
6968
run: wasm-pack build ./mutiny-wasm --release --weak-refs --target web
7069

7170
browser_tests:
7271
name: Browser Tests
7372
runs-on: ubuntu-latest
7473
env:
75-
RUSTUP_TOOLCHAIN: nightly
74+
RUSTUP_TOOLCHAIN: nightly-2023-10-24
7675
WASM_BINDGEN_TEST_TIMEOUT: 240
7776
steps:
7877
- uses: actions/checkout@v3
7978
- uses: actions-rs/toolchain@v1
8079
with:
81-
toolchain: nightly
80+
toolchain: nightly-2023-10-24
8281
target: wasm32-unknown-unknown
8382
override: true
8483
profile: minimal
@@ -116,7 +115,7 @@ jobs:
116115
- uses: actions/checkout@v3
117116
- uses: actions-rs/toolchain@v1
118117
with:
119-
toolchain: nightly
118+
toolchain: nightly-2023-10-24
120119
components: clippy
121120
target: wasm32-unknown-unknown
122121
override: true
@@ -159,7 +158,7 @@ jobs:
159158
- name: Install Rust
160159
uses: actions-rs/toolchain@v1
161160
with:
162-
toolchain: nightly
161+
toolchain: nightly-2023-10-24
163162
override: true
164163
profile: minimal
165164
components: clippy
@@ -206,7 +205,7 @@ jobs:
206205
- name: Install Rust
207206
uses: actions-rs/toolchain@v1
208207
with:
209-
toolchain: nightly
208+
toolchain: nightly-2023-10-24
210209
override: true
211210
profile: minimal
212211
components: clippy
@@ -252,7 +251,7 @@ jobs:
252251
- name: Install Rust
253252
uses: actions-rs/toolchain@v1
254253
with:
255-
toolchain: nightly
254+
toolchain: nightly-2023-10-24
256255
override: true
257256
profile: minimal
258257
components: clippy

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
debug/
33
target/
44
.vim/
5+
.direnv
56

67
# These are backup files generated by rustfmt
78
**/*.rs.bk

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ AR=/opt/homebrew/opt/llvm/bin/llvm-ar CC=/opt/homebrew/opt/llvm/bin/clang
4747

4848
### Dependencies
4949

50-
- [rust](https://www.rust-lang.org/) (specifically, nightly: `rustup toolchain install nightly` and `rustup target add wasm32-unknown-unknown --toolchain nightly`)
50+
- [rust](https://www.rust-lang.org/) (specifically, nightly: `rustup toolchain install nightly-2023-10-24` and `rustup target add wasm32-unknown-unknown --toolchain nightly`)
5151

5252
- [node](https://nodejs.org/en/)
5353

mutiny-core/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[toolchain]
2-
channel = "nightly"
2+
channel = "nightly-2023-10-24"

mutiny-wasm/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
default = "nightly"
2+
default = "nightly-2023-10-24"
33
targets = ["wasm32-unknown-unknown"]

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "nightly"
2+
channel = "nightly-2023-10-24"
33
components = ["rustfmt", "clippy"]
44
targets = [ "wasm32-unknown-unknown" ]
55
profile = "default"

0 commit comments

Comments
 (0)