You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Session cache: `session_cache_{name}.json` — array of sessions keyed by `IdentityFingerprint`, with optional `PersistentTransportState` (CBOR) for session resumption without re-handshake
108
108
- Transport auto-rekeys every 24 hours; replay nonces are not persisted (reset on load, 24h max message age)
109
109
110
+
## Before Committing
111
+
112
+
Always run these checks before committing:
113
+
114
+
```bash
115
+
cargo fmt --all -- --check # Verify formatting
116
+
cargo clippy --workspace # Lint check
117
+
cargo build --workspace # Verify it compiles
118
+
cargo test --workspace # Run all tests
119
+
```
120
+
110
121
## Rust Conventions
111
122
112
123
- Edition 2024, minimum Rust version 1.85, toolchain channel 1.93
0 commit comments