priority-lfu 0.3.0

A high-performance, concurrent, in-memory cache with W-TinyLFU eviction policy and weight-based prioritization.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Compile-fail tests using trybuild.
///
/// These tests verify that certain code patterns correctly fail to compile,
/// particularly around the Guard type being !Send.

#[test]
fn compile_fail_tests() {
	let t = trybuild::TestCases::new();
	t.compile_fail("tests/ui/*.rs");
}