koh 0.2.0

koh — a resilient peer-to-peer remote shell: mosh, rewritten in Rust over iroh
Documentation
1
2
3
4
5
6
7
8
9
10
# Test code is allowed to panic: a failed `unwrap`/`expect`/`assert` in a test
# IS the test failing. These keys relax the panic-prevention restriction lints
# (denied workspace-wide in Cargo.toml) for `#[cfg(test)]` modules, `#[test]`
# functions, and the `tests/` integration targets — keeping the strict
# panic-free guarantee on library/binary code only.
allow-unwrap-in-tests = true
allow-expect-in-tests = true
allow-panic-in-tests = true
allow-indexing-slicing-in-tests = true
allow-dbg-in-tests = true