oxcache 0.3.8

A high-performance multi-level cache library for Rust with L1 (memory) and L2 (Redis) caching.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2025-2026 Kirky.X
// SPDX-License-Identifier: MIT
// Security Tests Module

// Common modules shared by security tests
#[path = "common/mod.rs"]
pub mod common;

#[cfg(feature = "redis")]
#[path = "security/security_tests.rs"]
mod security_tests;

#[cfg(feature = "redis")]
#[path = "security/security_coverage_test.rs"]
mod security_coverage_test;