kitty_pool 0.2.0

A safe buffer pool
Documentation
1
2
3
4
5
6
7
8
9
10
11
export CARGO_INCREMENTAL=0
export CODECOV_TOKEN="73621dcd-8403-4b0d-bbba-b17e86b58d88"
export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads"
cargo build
cargo test
zip -0 ccov.zip `find . \( -name "kitty_pool*.gc*" \) -print`
grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore-dir "/*" -o lcov.info
bash <(curl -s https://codecov.io/bash) -f lcov.info
export CARGO_INCREMENTAL=
export CODECOV_TOKEN=
export RUSTFLAGS=