Commit aec86fd
signerproxy: Upgrade dependencies and remove async from entry points (Phase 3 & 4)
Phase 3 - Upgrade dependencies to modern versions:
- tokio: 0.2 -> 1.x with minimal features (rt, net, io-util only)
- tonic: 0.3 -> 0.8 (matches workspace)
- prost: 0.6 -> 0.11 (matches workspace)
- tonic-build: 0.3 -> 0.8 (matches workspace)
- tower: 0.3 -> 0.4 (matches workspace)
Phase 4 - Remove async from entry points:
- lib.rs: Remove async from Proxy::run()
- signerproxy.rs: Remove #[tokio::main] and async from main()
The subdaemon now uses only std threading with a minimal tokio
runtime exclusively for gRPC operations. No more old tokio 0.2
dependency and no async/await except where required by tonic.1 parent a8128eb commit aec86fd
3 files changed
+11
-11
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
28 | 29 | | |
29 | 30 | | |
30 | 31 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
5 | | - | |
| 4 | + | |
6 | 5 | | |
7 | 6 | | |
8 | 7 | | |
9 | 8 | | |
10 | | - | |
| 9 | + | |
11 | 10 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
16 | | - | |
| 15 | + | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
0 commit comments