File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 33
33
* pool: use per-purpose dedicated relay channels ([ Yuki Kishimoto] )
34
34
* pool: return relay urls to which ` messages ` /` events ` have or not been sent for ` send_* ` and ` batch_* ` methods ([ Yuki Kishimoto] )
35
35
* ffi(sdk): convert ` RelayPool::handle_notifications ` method to async/future ([ Yuki Kishimoto] )
36
+ * js: increase max stack size to ` 0x1E84800 ` bytes (32 MiB) ([ Yuki Kishimoto] )
36
37
37
38
### Added
38
39
45
46
### Fixed
46
47
47
48
* nostr: fix NIP-47 ` list_transactions ` response deserialization ([ Yuki Kishimoto] and [ lnbc1QWFyb24] )
49
+ * js: fix "RuntimeError: memory access out of bounds" WASM error ([ Yuki Kishimoto] )
48
50
49
51
### Removed
50
52
Original file line number Diff line number Diff line change @@ -11,4 +11,7 @@ fn main() {
11
11
println ! ( "cargo:rustc-env=GIT_HASH={git_hash}" ) ;
12
12
}
13
13
}
14
+
15
+ // 0x1E84800 bytes = 32MiB
16
+ println ! ( "cargo:rustc-link-arg=-zstack-size=0x1E84800" ) ;
14
17
}
Original file line number Diff line number Diff line change
1
+ // Copyright (c) 2022-2023 Yuki Kishimoto
2
+ // Copyright (c) 2023-2024 Rust Nostr Developers
3
+ // Distributed under the MIT software license
4
+
5
+ fn main ( ) {
6
+ // 0x1E84800 bytes = 32MiB
7
+ println ! ( "cargo:rustc-link-arg=-zstack-size=0x1E84800" ) ;
8
+ }
You can’t perform that action at this time.
0 commit comments