const-secret 0.1.0

A `no_std` crate for compile-time encrypted secrets.
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>const-secret - Documentation & Benchmarks</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background: #f5f5f5;
        }
        .container {
            background: white;
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-size: 2.5rem;
        }
        .tagline {
            color: #7f8c8d;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        .links {
            display: grid;
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-card {
            display: block;
            padding: 1.5rem;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 6px;
            text-decoration: none;
            color: #2c3e50;
            transition: all 0.2s;
        }
        .link-card:hover {
            border-color: #3498db;
            background: #ebf5fb;
            transform: translateY(-2px);
        }
        .link-card h3 {
            margin-bottom: 0.5rem;
            color: #3498db;
        }
        .link-card p {
            color: #666;
            font-size: 0.95rem;
        }
        .badges {
            margin: 1.5rem 0;
        }
        .badges img {
            margin-right: 0.5rem;
        }
        footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e9ecef;
            text-align: center;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        footer a {
            color: #3498db;
            text-decoration: none;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>const-secret</h1>
        <p class="tagline">Compile-time encrypted secrets for Rust with zero runtime overhead</p>
        
        <div class="badges">
            <img src="https://img.shields.io/crates/v/const-secret" alt="Crates.io">
            <img src="https://img.shields.io/badge/no__std-compatible-success" alt="no_std">
            <img src="https://img.shields.io/badge/license-Apache--2.0%2FMIT-blue" alt="License">
        </div>

        <div class="links">
            <a href="api/const_secret/" class="link-card">
                <h3>📚 API Documentation</h3>
                <p>Complete API reference with examples and type documentation</p>
            </a>
            
            <a href="benchmarks/report/" class="link-card">
                <h3>📊 Performance Benchmarks</h3>
                <p>Interactive Criterion.rs reports with detailed performance metrics</p>
            </a>
            
            <a href="https://github.com/zeon256/const-secret" class="link-card">
                <h3>💻 Source Code</h3>
                <p>View on GitHub - issues, pull requests, and contributions welcome</p>
            </a>
            
            <a href="https://crates.io/crates/const-secret" class="link-card">
                <h3>📦 Crates.io</h3>
                <p>Install the crate and view version history</p>
            </a>
        </div>

        <footer>
            <p>Generated from <a href="https://github.com/zeon256/const-secret">zeon256/const-secret</a></p>
            <p>Licensed under MIT OR Apache-2.0</p>
        </footer>
    </div>
</body>
</html>