ktls-sys 1.0.1

FFI bindings for `linux/tls.h`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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

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

check:
	cargo clippy --all-targets