ktls 3.0.0

Configures kTLS for tokio-rustls client and server connections.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# just manual: https://github.com/casey/just#readme

_default:
	just --list

# Run all tests with nextest and cargo-llvm-cov
ci-test:
	#!/bin/bash -eux
	cargo llvm-cov nextest --lcov --output-path coverage.lcov
	codecov

# Run all tests
test *args:
	RUST_BACKTRACE=1 cargo nextest run {{args}}