- Fix 3 client panics: replace .unwrap()/.expect() with proper error handling in rpc.rs (AUTH_CONTEXT lock), repl.rs (pending_member), and retry.rs (last_err) - Add --danger-accept-invalid-certs flag with InsecureServerCertVerifier for development TLS bypass, plus mdBook TLS documentation - Add CI coverage job (cargo-tarpaulin) and Docker build validation to GitHub Actions workflow, plus README CI badge - Add [workspace.lints] config, fix 46 clippy warnings across 8 crates, zero warnings on all buildable crates - Update Dockerfile for all 11 workspace members
23 lines
569 B
TOML
23 lines
569 B
TOML
[package]
|
|
name = "quicproquo-proto"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Cap'n Proto schemas, generated types, and serialisation helpers for quicproquo. No crypto, no I/O."
|
|
license = "MIT"
|
|
|
|
# build.rs invokes capnpc to generate Rust source from .capnp schemas.
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
capnp = { workspace = true }
|
|
|
|
[lints.rust]
|
|
unsafe_code = "warn"
|
|
|
|
[lints.clippy]
|
|
# Generated Cap'n Proto code uses patterns that trigger clippy lints.
|
|
unwrap_used = "allow"
|
|
|
|
[build-dependencies]
|
|
capnpc = { workspace = true }
|