Skip to main content

A high-performance disk cache implementation in Rust with Python bindings

Project description

DiskCache RS

PyPI version PyPI downloads Python versions License Rust CI codecov Documentation

English Documentation

A blazingly fast disk cache implementation in Rust with Python bindings, designed to be compatible with python-diskcache while providing superior performance and bulletproof network filesystem support.

๐Ÿ“Š Performance Results

diskcache_rs consistently outperforms python-diskcache across all operations:

Operation diskcache_rs python-diskcache Speedup
Single SET 8,958 ops/s 7,444 ops/s 1.2x faster โšก
Batch SET (10) 13,968 ops/s 1,889 ops/s 7.4x faster ๐Ÿš€
Batch SET (100) 14,699 ops/s 7,270 ops/s 2.0x faster โšก
Cold Start 806 ฮผs 14,558 ฮผs 18x faster ๐Ÿš€
DELETE 122k ops/s 7.7k ops/s 16x faster ๐Ÿš€

Benchmarks run on Windows 11, Python 3.13, identical test conditions.

๐Ÿš€ Features

๐ŸŒŸ Core Advantages

  • โšก Superior Performance: 1.2x to 18x faster than python-diskcache
  • ๐ŸŒ Network Filesystem Mastery: Bulletproof operation on NFS, SMB, CIFS
  • ๐Ÿ”„ Drop-in Replacement: Compatible API with python-diskcache
  • ๐Ÿš€ Ultra-Fast Startup: 18x faster cold start times
  • ๐Ÿงต True Concurrency: Built with Rust's fearless concurrency

๐ŸŽ›๏ธ Storage Backends

  • UltraFast: Memory-only storage for maximum speed
  • Hybrid: Smart memory + disk storage with automatic optimization
  • File: Traditional file-based storage with network compatibility

๐Ÿ›ก๏ธ Reliability

  • No SQLite Dependencies: Eliminates database corruption on network drives
  • Atomic Operations: Ensures data consistency even on unreliable connections
  • Thread Safe: Safe for concurrent access from multiple threads and processes
  • Compression Support: Built-in LZ4 compression for space efficiency

๐ŸŽฏ Problem Solved

The original python-diskcache can suffer from SQLite corruption on network file systems, as documented in issue #345. This implementation uses a file-based storage engine specifically designed for network filesystems, avoiding the "database disk image is malformed" errors.

๐Ÿš€ Quick Start

pip install diskcache-rs
from diskcache_rs import Cache

# Create a cache
cache = Cache('/tmp/mycache')

# Basic operations
cache['key'] = 'value'
print(cache['key'])  # 'value'

# Check if key exists
if 'key' in cache:
    print("Key exists!")

# Get with default
value = cache.get('missing_key', 'default')

# Delete
del cache['key']

๐Ÿ“ฆ Installation

From PyPI (Recommended)

# Standard installation (Python version-specific wheels)
pip install diskcache-rs

# ABI3 installation (compatible with Python 3.8+)
pip install diskcache-rs --prefer-binary --extra-index-url https://pypi.org/simple/

Wheel Types

diskcache_rs provides two types of wheels:

  1. Standard Wheels (default)

    • Optimized for specific Python versions (3.8, 3.9, 3.10, 3.11, 3.12, 3.13)
    • Smaller download size
    • Maximum performance for your Python version
  2. ABI3 Wheels (universal)

    • Single wheel compatible with Python 3.8+
    • Larger download size but works across Python versions
    • Ideal for deployment scenarios with multiple Python versions

Prerequisites (Building from Source)

  • Rust 1.87+ (for building from source)
  • Python 3.8+
  • maturin (for building Python bindings)

Build from Source

# Clone the repository
git clone https://github.com/loonghao/diskcache_rs.git
cd diskcache_rs

# Install dependencies
uv add diskcache  # Optional: for comparison testing

# Standard build (Python version-specific)
uvx maturin develop

# ABI3 build (compatible with Python 3.8+)
uvx maturin develop --features abi3

Development Commands

# Setup development environment
just dev

# Build standard wheels
just release

# Build ABI3 wheels
just release-abi3

# Available commands
just --list

Release Process

This project uses Release Please for automated version management and releases.

Making Changes

  1. Use Conventional Commits: All commits should follow the Conventional Commits specification:

    # Commit format:
    # feat: add new feature
    # fix: resolve bug
    # docs: update documentation
    # chore: maintenance tasks
    
  2. Automatic Releases: When you push to main, the CI will:

    • Analyze commit messages since the last release
    • Create a release PR with updated version and changelog
    • When the release PR is merged:
      • Automatically create a GitHub release with tag
      • Build and publish wheels to PyPI
      • Update Cargo.toml, pyproject.toml, and CHANGELOG.md

๐Ÿ”ง Usage Examples

Basic Cache Operations

from diskcache_rs import Cache

# Create a cache with size limits
cache = Cache('/tmp/mycache', size_limit=1e9)  # 1GB limit

# Dictionary-like interface
cache['key'] = 'value'
print(cache['key'])  # 'value'

# Method interface
cache.set('number', 42)
cache.set('data', {'nested': 'dict'})

# Get with default values
value = cache.get('missing', 'default_value')

# Check membership
if 'key' in cache:
    print("Found key!")

# Iterate over keys
for key in cache:
    print(f"{key}: {cache[key]}")

# Delete items
del cache['key']
cache.pop('number', None)  # Safe deletion

# Clear everything
cache.clear()

Advanced Features

from diskcache_rs import Cache, FanoutCache

# FanoutCache for better concurrent performance
cache = FanoutCache('/tmp/fanout', shards=8, size_limit=1e9)

# Set with expiration (TTL)
cache.set('temp_key', 'temp_value', expire=3600)  # 1 hour

# Touch to update access time
cache.touch('temp_key')

# Atomic operations
with cache.transact():
    cache['key1'] = 'value1'
    cache['key2'] = 'value2'
    # Both operations succeed or fail together

# Statistics and monitoring
stats = cache.stats()
print(f"Hits: {stats.hits}, Misses: {stats.misses}")
print(f"Size: {cache.volume()} bytes")

# Eviction and cleanup
cache.cull()  # Manual eviction
cache.expire()  # Remove expired items

High-Performance Scenarios

from diskcache_rs import FastCache

# Ultra-fast memory-only cache
fast_cache = FastCache(max_size=1000)

# Batch operations for maximum throughput
items = [(f'key_{i}', f'value_{i}') for i in range(1000)]
for key, value in items:
    fast_cache[key] = value

# Efficient bulk retrieval
keys = [f'key_{i}' for i in range(100)]
values = [fast_cache.get(key) for key in keys]

Network Filesystem Support

from diskcache_rs import Cache

# Works reliably on network drives
network_cache = Cache('//server/share/cache')

# Atomic writes prevent corruption
network_cache['important_data'] = large_dataset

# Built-in retry logic for network issues
try:
    value = network_cache['important_data']
except Exception as e:
    print(f"Network error handled: {e}")

Django Integration

# settings.py
CACHES = {
    'default': {
        'BACKEND': 'diskcache_rs.DjangoCache',
        'LOCATION': '/tmp/django_cache',
        'OPTIONS': {
            'size_limit': 1e9,  # 1GB
            'cull_limit': 0.1,  # Remove 10% when full
        }
    }
}

# In your views
from django.core.cache import cache

cache.set('user_data', user_profile, timeout=3600)
user_data = cache.get('user_data')

Performance Comparison

import time
import diskcache
from diskcache_rs import Cache

# Setup
data = b'x' * 1024  # 1KB test data

# Original diskcache
dc_cache = diskcache.Cache('/tmp/diskcache_test')
start = time.perf_counter()
for i in range(1000):
    dc_cache.set(f'key_{i}', data)
dc_time = time.perf_counter() - start

# diskcache_rs
rs_cache = Cache('/tmp/diskcache_rs_test')
start = time.perf_counter()
for i in range(1000):
    rs_cache[f'key_{i}'] = data
rs_time = time.perf_counter() - start

print(f"diskcache: {dc_time:.3f}s ({1000/dc_time:.0f} ops/sec)")
print(f"diskcache_rs: {rs_time:.3f}s ({1000/rs_time:.0f} ops/sec)")
print(f"Speedup: {dc_time/rs_time:.1f}x faster")

Python-Compatible API

For drop-in compatibility with python-diskcache:

# Add the python wrapper to your path
import sys
sys.path.insert(0, 'python')

from diskcache_rs import Cache, FanoutCache

# Use like original diskcache
cache = Cache('/path/to/cache')
cache['key'] = 'value'
print(cache['key'])  # 'value'

# FanoutCache for better performance
fanout = FanoutCache('/path/to/cache', shards=8)
fanout.set('key', 'value')

Network Filesystem Usage

Perfect for cloud drives and network storage:

# Works great on network drives
cache = diskcache_rs.PyCache("Z:\\_thm\\temp\\.pkg\\db")

# Or UNC paths
cache = diskcache_rs.PyCache("\\\\server\\share\\cache")

# Handles network interruptions gracefully
cache.set("important_data", b"critical_value")

๐Ÿ—๏ธ Architecture

Core Components

  • Storage Engine: File-based storage optimized for network filesystems
  • Serialization: Multiple formats (JSON, Bincode) with compression
  • Eviction Policies: LRU, LFU, TTL, and combined strategies
  • Concurrency: Thread-safe operations with minimal locking
  • Network Optimization: Atomic writes, retry logic, corruption detection

Network Filesystem Optimizations

  1. No SQLite: Avoids database corruption issues
  2. Atomic Writes: Uses temporary files and atomic renames
  3. File Locking: Optional file locking for coordination
  4. Retry Logic: Handles temporary network failures
  5. Corruption Detection: Validates data integrity

๐Ÿ“‹ Feature Comparison

Feature diskcache_rs python-diskcache Notes
Performance 1.2x - 18x faster Baseline Rust implementation advantage
Network FS โœ… Optimized โš ๏ธ May corrupt File-based vs SQLite
Thread Safety โœ… Yes โœ… Yes Both support concurrent access
Process Safety โœ… Yes โœ… Yes Multi-process coordination
API Compatibility โœ… Drop-in โœ… Native Same interface
Memory Usage ๐Ÿ”ฅ Lower Baseline Rust memory efficiency
Startup Time ๐Ÿš€ 18x faster Baseline Minimal initialization
Compression โœ… LZ4 โœ… Multiple Built-in compression
Eviction Policies โœ… LRU/LFU/TTL โœ… LRU/LFU/TTL Same strategies
Serialization โœ… Multiple โœ… Pickle JSON, Bincode, Pickle
Type Hints โœ… Full โœ… Partial Complete .pyi files
Cross Platform โœ… Yes โœ… Yes Windows, macOS, Linux
ABI3 Support โœ… Optional โŒ No Single wheel for Python 3.8+
Wheel Types ๐ŸŽฏ Standard + ABI3 Standard only Flexible deployment options
Dependencies ๐Ÿ”ฅ Minimal More Fewer runtime dependencies
Installation ๐Ÿ“ฆ pip install ๐Ÿ“ฆ pip install Both available on PyPI

๐Ÿ“Š Performance

Benchmarks on cloud drive (Z: drive):

Operation diskcache_rs python-diskcache Notes
Set (1KB) ~20ms ~190ms 9.5x faster
Get (1KB) ~25ms ~2ms Optimization needed
Concurrent โœ… Stable โœ… Stable* Both work on your setup
Network FS โœ… Optimized โš ๏ธ May fail Key advantage

*Note: python-diskcache works on your specific cloud drive but may fail on other network filesystems

๐Ÿงช Testing

The project includes comprehensive tests for network filesystem compatibility:

# Basic functionality test
uv run python simple_test.py

# Network filesystem specific tests
uv run python test_network_fs.py

# Comparison with original diskcache
uv run python test_detailed_comparison.py

# Extreme conditions testing
uv run python test_extreme_conditions.py

Test Results on Cloud Drive

โœ… All tests pass on Z: drive (cloud storage)

  • Basic operations: โœ“
  • Concurrent access: โœ“
  • Large files (1MB+): โœ“
  • Persistence: โœ“
  • Edge cases: โœ“

๐Ÿ”ง Configuration

cache = diskcache_rs.PyCache(
    directory="/path/to/cache",
    max_size=1024*1024*1024,    # 1GB
    max_entries=100000,          # 100K entries
)

Advanced Configuration (Rust API)

use diskcache_rs::{Cache, CacheConfig, EvictionStrategy, SerializationFormat, CompressionType};

let config = CacheConfig {
    directory: PathBuf::from("/path/to/cache"),
    max_size: Some(1024 * 1024 * 1024),
    max_entries: Some(100_000),
    eviction_strategy: EvictionStrategy::LruTtl,
    serialization_format: SerializationFormat::Bincode,
    compression: CompressionType::Lz4,
    use_atomic_writes: true,
    use_file_locking: false,  // Disable for network drives
    auto_vacuum: true,
    vacuum_interval: 3600,
};

let cache = Cache::new(config)?;

๐Ÿ“š API Reference

Cache Class

The main cache interface, compatible with python-diskcache:

from diskcache_rs import Cache

cache = Cache(directory, size_limit=None, cull_limit=0.1)

Methods:

  • cache[key] = value - Set a value
  • value = cache[key] - Get a value (raises KeyError if missing)
  • value = cache.get(key, default=None) - Get with default
  • cache.set(key, value, expire=None, tag=None) - Set with options
  • del cache[key] - Delete a key
  • key in cache - Check membership
  • len(cache) - Number of items
  • cache.clear() - Remove all items
  • cache.stats() - Get statistics
  • cache.volume() - Get total size in bytes

FanoutCache Class

Sharded cache for better concurrent performance:

from diskcache_rs import FanoutCache

cache = FanoutCache(directory, shards=8, size_limit=None)

Same API as Cache, but with better concurrent performance.

FastCache Class

Memory-only cache for maximum speed:

from diskcache_rs import FastCache

cache = FastCache(max_size=1000)

Methods:

  • cache[key] = value - Set a value
  • value = cache[key] - Get a value
  • value = cache.get(key, default=None) - Get with default
  • del cache[key] - Delete a key
  • cache.clear() - Remove all items

๏ฟฝ Testing

Running Tests

# Run all tests
uv run --group test pytest

# Run specific test categories
uv run --group test pytest -m "not docker"  # Skip Docker tests
uv run --group test pytest -m "docker"      # Only Docker tests
uv run --group test pytest -m "network"     # Network filesystem tests

# Run compatibility tests
uv run --group test pytest tests/test_compatibility.py -v

Docker Network Testing

For comprehensive network filesystem testing, we provide Docker-based simulation:

# Run Docker network tests (requires Docker)
./scripts/test-docker-network.sh

# Or manually with Docker Compose
docker-compose -f docker-compose.test.yml up --build

The Docker tests simulate:

  • NFS server environments
  • SMB/CIFS server environments
  • Network latency conditions
  • Concurrent access scenarios

Cross-Platform Network Testing

The test suite automatically detects and tests available network paths:

  • Windows: UNC paths, mapped drives, cloud sync folders
  • Linux/macOS: NFS mounts, SMB mounts, cloud sync folders

๏ฟฝ๐Ÿค Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests
  5. Submit a pull request

๐Ÿ“„ License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

๐Ÿ“š Related Projects

๐Ÿค Contributing

We welcome contributions! Here's how to get started:

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Install development dependencies: just dev
  4. Make your changes and add tests
  5. Run the test suite: just test
  6. Format your code: just format
  7. Submit a pull request

Development Setup

# Clone and setup
git clone https://github.com/loonghao/diskcache_rs.git
cd diskcache_rs

# One-command setup
just dev

# Available commands
just --list

Running Tests

just test          # Run all tests
just test-cov      # Run with coverage
just bench         # Run benchmarks
just format        # Format code
just lint          # Run linting

๐Ÿ“„ License

Licensed under the Apache License, Version 2.0. See LICENSE for details.

๐Ÿ™ Acknowledgments

  • Grant Jenks for the original python-diskcache
  • PyO3 team for excellent Python-Rust bindings
  • maturin for seamless Python package building
  • Rust community for the amazing ecosystem

Note: This project specifically addresses network filesystem issues encountered with SQLite-based caches. For local storage scenarios, both diskcache_rs and python-diskcache are excellent choices, with diskcache_rs offering superior performance.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

diskcache_rs-0.4.10.tar.gz (238.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

diskcache_rs-0.4.10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.10-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.12+ i686

diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

diskcache_rs-0.4.10-cp314-cp314-win32.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86

diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

diskcache_rs-0.4.10-cp314-cp314-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

diskcache_rs-0.4.10-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

diskcache_rs-0.4.10-cp313-cp313-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

diskcache_rs-0.4.10-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.4.10-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

diskcache_rs-0.4.10-cp312-cp312-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

diskcache_rs-0.4.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.4.10-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

diskcache_rs-0.4.10-cp311-cp311-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

diskcache_rs-0.4.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.4.10-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.10-cp38-abi3-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8+Windows x86-64

diskcache_rs-0.4.10-cp38-abi3-win32.whl (1.2 MB view details)

Uploaded CPython 3.8+Windows x86

diskcache_rs-0.4.10-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.10-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.12+ i686

diskcache_rs-0.4.10-cp38-abi3-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

diskcache_rs-0.4.10-cp38-abi3-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file diskcache_rs-0.4.10.tar.gz.

File metadata

  • Download URL: diskcache_rs-0.4.10.tar.gz
  • Upload date:
  • Size: 238.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for diskcache_rs-0.4.10.tar.gz
Algorithm Hash digest
SHA256 7eca3923717ac69197143ec6452a8a65d388c70497e463bc30fc92495b6d1385
MD5 80929b7366d561f95d0d0abe76234a30
BLAKE2b-256 e3deeaf459b0550fde8e4754a95bd6e5ac7f21212a11360e41e16575be1637e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10.tar.gz:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 019c4e2be8895b0a88c4d3812c4f19a07b31535612ca3cbfff40fc1f07444444
MD5 fc7f6d8901facf87e6eb0d8675c8cf20
BLAKE2b-256 82c158f6ce67fdd3b676d040746f3e2662086f6d1d8de006dbaddcac1dff4d72

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b87cda1108b27439ca0f1ef0db8b4ed876e5bae5d2942e5a5fad65f2cd9b02c
MD5 a82ebded72d813caa49ef6b9462141f4
BLAKE2b-256 929932c67668ad331230f58d2c932987c9642729e0b601f831cd960511260342

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7db74dc72b3f4a2b5fc2a970da70ea698333bd3796fa951def447d404937d24
MD5 4fb9843b19ed459762fbf25718b2293a
BLAKE2b-256 ef426abd604ca0cb07ace73a8a8ae0cc6299098a5a5ef50c2869fae052df2487

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f63ca5f83905fd9a1992689de2232352d2afbca09934a05f36249009fefdd82
MD5 a32b8c0bab463bf9c1e46ab072cb3273
BLAKE2b-256 a2e8516000f33e484959b9805a604298fb1b81115b26ea8ee1387bd3e9e383d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96b28323271875b5bd95b5932be71282e325fe6f1a0ab91a298e3b7a50b49741
MD5 a8e9454346f02b95504a35cc4e8af653
BLAKE2b-256 2e8e14965d7e5ea7f597120c3efd20eede47972059131bcb31eb28ce317f1aac

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a95fcfd3cc8e37534c4818721410cb63039bce2e7cd9a1d1a1a20b584232929
MD5 ef9d6115b2f05492fc500f9863164318
BLAKE2b-256 0e363fa5c3f29d95a2ed6c19b1481996419d734a4b85da3648d2ff0eab956441

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f51fd77549ecbd6977d10a7824774b40b44b4584f4d1aa91e19e94e070e9f3f
MD5 fc8b7ac644247238d3a1fc48d451a006
BLAKE2b-256 b72c27f13c73b66c7baa0218402e91262ca6fe86e7d793a6d31d21bd610778f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 37e8d0b522d2946045e4587bd81d1c3c4e37971558567e66820a8bb81cbfba21
MD5 07407b86c3f87b2881ee8e98d8ebc038
BLAKE2b-256 5aa7841686b57e9d3695e49c68f65a456436c829f20e75949672cead2b9eb4c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08b73ebb84bed3913fa1eb77108ca46a18562e80139d8416a702fd1c22ca9104
MD5 c9b940437c6031a0fa45107455ebc1a1
BLAKE2b-256 8e1777ab4cf7a74efb638acb1487be499d61bf19834622e6a7dac721b1c4e8df

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2bad97d0a1a6142f7d90c1d84c3f98ab944c00082c22e7ab0dbf7ff8bad935cc
MD5 ca618b6ea1deb27fbda89fdc5b20d765
BLAKE2b-256 a64b175e1e55ff1913a53d739bf0333cee7f4c18ef24b01694bc7c66daeb07ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9383ce582659c2bea28aa2b248f43ecef9a1aac09e2919fecbec49741c85ea7b
MD5 092c62370b761d67c0bd1f3119a73d17
BLAKE2b-256 ef8cca0589888095b5da2a65574e15722dbd6afbe1ceda7cd3f1f14c7bc32575

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57fbf845a6c02490bfa7955cc86e0eaac5b4237194302dfb78cba4e0273885c7
MD5 2e6c7ccab89ec3a5e7a79834cf70d7ab
BLAKE2b-256 87af5d63c3bb8d09408d7aa15c491e0d72af65b571f1727b174c7ba67e929d9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3cff8b5b79d6a676499321bd58cc790b829886e04e62e603a60a67689c431e4f
MD5 95d1752f501c2b784fbb0d56b32427d4
BLAKE2b-256 0c4c62b394d712333d82f25b98f33e5a9c6fb091fb0d1b570b9cb92822cd259f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcf766d332f1f2f836966a573043ae1d430cc212e7d3e0b876dbb51feaf30b8f
MD5 c1146ff996f0cd89a7fefbe4fcaf5620
BLAKE2b-256 5dc2f83f0a7b62da2a2d797197383a235f864c55236fd3965e26f8bf4a466e9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb9b4710e19d83bd123d569e5c00a19d2b1a1f73a56e08444a1e5e0dc4b649e6
MD5 ed6e01bd2aac0e3232487fca36d8196b
BLAKE2b-256 0f46e1f4288cc079d6714961023e67b688e579ccf72eb246d33067a3d019f112

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18e544a3177cb0de140fd2794683b5fbfd84f2d50f175964dd5b30a6e262e8c6
MD5 ffdd51be364a553e9ae5c1ffba779703
BLAKE2b-256 a53ba1b1ddbfe93d56d6e60404e42638a4f26b1fbacf379bf08642202382c2ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 797bf707511e57f2fbd56690a1f9b7ab7eb32296b4d8f1f4e2b29e3ee35c5eac
MD5 7bb4c7f816420ce36d8bcf591b6699dd
BLAKE2b-256 fe7d8f558f9d358155e2011cd18acc1c775ab56fb9a0a54423841033e7945ff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.4.10-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b76190575649c94fb08bcbcbaf16a8fde92e694598d2d931d4a056b7c8d4dd99
MD5 5e816d8ba5e9ef3224057e5a5a35237a
BLAKE2b-256 64b334e5a9e8acf802b43667c50c73a9aa23ad927431eb490c65846d2e7935af

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-win32.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e44b96cce8e28d998cc7cdd8f8037d59eb589404c7b1f9a945c2ccb4a7166a2a
MD5 75f7ff68912b33c082c4c1b7d0f97573
BLAKE2b-256 e3a2a798280e05dda6727960be29a5428ac9c82137529cc94ef54d3cf0692691

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1f6b868e6eccd9d008db77ea88971629437d3bfebd60663f0df82cf904733de
MD5 053cfbcac8e380c744b9242896535bd0
BLAKE2b-256 94828eaf8077b728bb6789a0f3f35228bf5d6a4da5371220220a17c6b7ec062c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07b758e004024302f5c368ac9448b46347339d52ad6fa3e4db5f441b49a538b5
MD5 08dc838d50fab03be39bf8e635182dcf
BLAKE2b-256 0c0397be9819ba9994388eeb98e0ade14699baed8e0cbb7cd793071406899ceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 588e26e3424c6f246b637dd9f83966f5042522b99504830406dc1af386538361
MD5 e4b5473335b7792650e4db2528e6b06e
BLAKE2b-256 19ec05affa36dbc25d8afda39997681d4a7e7ab16c6f244a978231342fe480c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f1a3738633504490059727af917311d48daa47ed7359f15c0a96b21b341bb79
MD5 e7a6d0178122952e05200838ad940fdd
BLAKE2b-256 0c53d0b510abb32f75de11cc3c3ce0d7be9026ed86de796985a316a2741dbe45

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d59a6c68b3691b28474c50e671d74d85773d9c6fefa1f10b1a586e57ac333857
MD5 82566c53c416c7efada438eca1b960fb
BLAKE2b-256 6550f12c9013fdab2221d886c22dbb15b487fb4832a4decc4d9ef81c2136ef9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74c78bb3a497cfd0a3c4b36c2f9a468da815fa8aa740155ccbd24537a0320807
MD5 cae045c3b8a55ab5bb805dc3e8996c72
BLAKE2b-256 8ecb65b67675268274d6e9494b0e42cd448b56921664019301b4070e8af589ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5627b4bb6392b5f9d9a4d4047259dde7e25b84bac8ada1e92f65e599019cadcd
MD5 e9bf6cd987362240b67e596d42f9f25e
BLAKE2b-256 faca44cc941da8463726475faf8d3a45a7a6c5fa92c52a49a49fc09754e2bfb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec14dde1becff3310a36f1913ddfd7f534ce7a6c81fd8690b3b48f4e4456480d
MD5 a6b398dd717b7c188f9e4e72ecd08325
BLAKE2b-256 09597cbfdf9c53f1977c78f7951be9c8e9ea4d36aaf789242ff7b6ff9fe27062

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 16688ea3655aa33e534249ffeb1a5f93e08ac69228663da2282cf9d46bcbdc71
MD5 a358754ea14dd4096fa53c2136de71ca
BLAKE2b-256 741cfed8847d77c6887edaa4d401416c25a84584213f300538b483bae52c5950

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78c9a6055cf558af44069fdbe98662011b6a8b0694b23aaf3c9f25d92500ee18
MD5 7e84bb3a10549fae5353c213d04220af
BLAKE2b-256 74a5d2a9013bd4339eceb3c298b217354d0f18aae03bea48197f74dada3fc4bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48a98ecacd63a00ca3bba72cbec3ffdd7804e43306fbec6628ff577bdf2f50d5
MD5 8c1712be6aed36653ad65dae2d14b69f
BLAKE2b-256 af0a497a63cecdbb288b7e060e4fec55239c8b58bb48fe59203d28ef99987a7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 137c23d102be2431c6d1f61250afab9dd08d0524ce8b424a84c08319f5604de6
MD5 8cfe7a9fba51b69f737159db32e05ef5
BLAKE2b-256 e1543aad8e27ce95f12d09cd4f534153f581106c7a1eaded4f12c1d653f1ce73

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65a43f6ca63dcbf84bdcf3a87baab1a6b2617e0c30365ff61b854097ce836aad
MD5 a0bc3e3d9d5d444d0ed953a7afa2e9e7
BLAKE2b-256 c42d1a0723c8e2bd1c942f0cfda6b17dabb18407075e0e952429aec784b667ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aceeb83955467aa776fe9d5fabb13fa5def0975ad4824bcdf31a06e8481a9c3b
MD5 415b0e6d68b220ff8c327d26ae82bec7
BLAKE2b-256 0140f71072097f590421735a096826725b9fbd813b5317c754a4319b9f4bff97

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8454c0020bf1c6f070dac9529ec4111861d54f2ec93d41bc4504f162326062cb
MD5 d9a4f8aacdff42c8b7a50e1779597fc7
BLAKE2b-256 2b4ae3da32cc65bb3fd7cfce98dc305c973c0ba00bfe5efb8cd0358e22309fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ac6e29e87278df80af5129a73f9ec54a297fb7e9ceb9cfb15db26baed50e0ccd
MD5 b71daa73c9eb792e11c777affc7e48a2
BLAKE2b-256 7a68ae4df546111ae39b539d71ee3e322016cf43952f9d253e5c73ccae8b462e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7dca9578575df5fa0ce023e44176d2fcdd340185f890ce8f6399d5b303cd6e1e
MD5 a0a4986b188844ae6569b0c34aa3f8f0
BLAKE2b-256 8e1653bb2d64e5eb7f2711e69c3a028cf50eb3ecb07377320ace26182e2c3890

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6461fd377e97b23d95afe3cb83240e6fa999c7fe69147521aa35d6ac7286c9c
MD5 043264c32ad7bf17d8f8992f4c9a02de
BLAKE2b-256 47a74ff97adbfd2b6f897d086da7750653de78678d182cd7daef19087bbdabf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 175d77b29daff990ae115eb9a7169367ae2559b8144e9f294515927190563371
MD5 e38bfb9e14971f2dee6177126a798530
BLAKE2b-256 f42f8e6ce13fdb6f2fb9c87c6a7058a93cc278dd38503a15eab84e05eda1849a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b584c1dadd3f92ff09742837dfe63870ad02e1f9a1ca77a5eedaa5575f9d3251
MD5 936d77997b315e290479d6e87f3a355f
BLAKE2b-256 4c25b9f6a224686030f6a7a47527c30fa1df3d7178acbb02cf5c549a8d51f003

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c8b03a69f7020cc57e9190d0ed84c99fd1a87e3adbd2d87e45bccbb3bfd145b
MD5 575db845cd321bbbf8e7455103e5f699
BLAKE2b-256 930c09fa6b949eaed96143f98a787d06d55174ed2ad73f826e37259a8ae1398b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9974b20f5f594cd2a3bfa50bc4164a6729ef574d5228c5a83ac7d0510666a382
MD5 c684c224b0b3b9b978d3bc9ca2565745
BLAKE2b-256 8c69c5a633028d779b6e401ae86a754700ee9d0ca2c6d34114d4091565dddad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24207b5d9cf94a2257970ace43dfcaaf10d8a6701d2517c677ce8070ee404d09
MD5 7846f2743356924d5e0fa7e0f27c5a11
BLAKE2b-256 54774bb93254b9854bd38f70741a8fd76ed839379875c0cf35e05023653306fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a71dc730c340ec6df60d17595d7655f75cd6c2d57e713d88a049819365679e6b
MD5 4690c57ca2c003280731665d094ed807
BLAKE2b-256 b9092ae68f09e08713218abc3f3c399baa1277a2dfe1b9d6abb568472027f975

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9173a42ed0e0d4fc60f413ff391a201126fe9913700ef212dee49e97323c7090
MD5 188b4788039768f41e16ee254b576f1c
BLAKE2b-256 6471d91f2940b692e6c7ce34d9013c53d4ae8e7416810a5c44f9555d50c23cfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 b9407293108a289955c10a63d43be68ba3a5c5c961d9ea24870157e1ba2fc474
MD5 70be068e72ebb1f7018543e723f4b9f4
BLAKE2b-256 6861d419eecff049f25e9efcee3f6f264021622218f6bbf4de807b8424275e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 94f7f8d1f8db78309bf076c3b4b15b5bc7c767d67bea74190eb3e374d7137c49
MD5 dd5eaae6f935a3402400c6edaaa69a7c
BLAKE2b-256 188313d0e50f27bfdf7a5ae08283a24f8fd4f8ab597536cd31ba090552d4204d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33ecd2f55ca5d7df497e9397a03bb0ac63acdf9b49fe353aca29ba78838e89bf
MD5 b2aea732c31fc1735a643e74c951d6b2
BLAKE2b-256 93746645f722ab2a45ff18635cbb1823aa38e0608f8093af6159bafa7885802b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce90a7f4cc413cf466de42606a1f47a133064b227a10a640e397a10ba3df97e0
MD5 996eae658b2a7f12424cb71307bf213a
BLAKE2b-256 3ff32eb83a54208dc673ef7268635813f987af09391465fb5bcbf59ab8251047

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 23a88190f9419c37d650146dafc8dae3701fc7a29b34f37925285cf9280eaaec
MD5 f4bf98cee9309f94ded0d64a251587b1
BLAKE2b-256 e843331d569ddb24fa903f8325e1ff3d0adb41249f6d0171cc5110455c533a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cdda91b00de09287a331900f08cbc9347f8e5ed6e1695daf3d8c455fa67a9b1
MD5 10f92fdcbf9c67b34e43a0b546a0345e
BLAKE2b-256 0c6fd371936fbd0c8015f9557c268bf21fa8e12fdc0162a3250a6bcbbce76e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8503110b8818b3d5bc9a3a221806c62d1b870ccdff76f65c3f0a0f19e1a0b831
MD5 5148cd4de84ebf07172e579ae5a103c7
BLAKE2b-256 e536e84dd3844ee01a25d5ac2d8bffcdf0cb034aa25a82c988e6ac77aeab9ea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e712cecb185418396913e65d2364343c24a0274428a45d9e7ecda870d18e697e
MD5 d33e3b85eae4110ef1a36011895e24d8
BLAKE2b-256 b7fccec601c27fdf61776fe8ebfb72c5e7c1a0f5a6e8ea3ffc7642456f939a0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 907b4338bf0d62627223b9a04f268d8bc359b6a719bd8c902af354667be64038
MD5 b5beee1c2a648b3f028bf19669b12a5d
BLAKE2b-256 5c6df29bc17c404c92bed6b3cc16246cd165a0ac4effbd26bfa35746bf8395ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ca590fb6d94325f5ea4b917e1b587e5cc663f9cd7e5fad2c18e1dca00ec0e511
MD5 0bcf059736909b17d59e1f4efe7d1567
BLAKE2b-256 72846d1200e0394d3d9ee67872321532d6c3662bf776d97539caa580e0b34bee

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8bbddaa764c0f28d360614363b3992f9c22629f34ce6d2c4dded50e05befaaac
MD5 a3f900a5f820725a1da7e8ac52f088cd
BLAKE2b-256 938c12063c61d5f1e66dd192635b815f6bf813a3ad1b20a900031614b6caec60

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9a6d93bcbfd377eebab07d817d294ac33105356e14829b2e4c88b205ad918125
MD5 06e57be77decf5b736c083ec874e76a4
BLAKE2b-256 5a409933740460cbb285d81b472f5b95dd40a273464d8cddc41d6b16cb9e3399

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a2b6c10134d78166b04572dcc601ec72483ffe1100064a3ef5bea4b03ccce8d
MD5 1b9face2786cd6c74f7e6120cdb20a1e
BLAKE2b-256 0096965ced6861902c524e80ad033dbdb4158966fe5f186ec3e44a07402e8694

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7d65490658de9b4e75fcf77ae4c0276b360eda82fba07a13c712a359b772935
MD5 41fbb02ee393ffee4b05d55589c4d507
BLAKE2b-256 74ab3deb543bc860c1fea5e313a4611ba402b7e8f937d8988223f6edda7d8f3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 409f3d89abfef4eb0c78ceb39fd2bfe5a35cbaa5b249fa088871a0e40a403902
MD5 4792b64a383f7f80abbdc1f8ebcb6f94
BLAKE2b-256 0fd8427a459736ec48ddf95c570d4debedff76d36f10f3bc829bc8eed9a19aa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 90a6ea12930c22d50047297606611d19836bf7597829bd305b3631191a88e628
MD5 81a3fde0a789f1b249ac952efabd3dcc
BLAKE2b-256 223937213980721a67bc5057ea110e8aad81ecd343733e3226380a367c55f0f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e589beabda80c3a8ece5e128c3b4edd65a29180b813db0905f6cf2e34588b5f7
MD5 a20e856ac671fa8548500379d18a00f4
BLAKE2b-256 d74f0a2fcf4b21eddd724cb50c930d72113cb377cb3de9d9324b5145c40ad664

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3da4a1a337c54f537b44df2421b0307612538e414251861b7f6e10cdfe11a09a
MD5 b7ce16335f27bc7cddf9433304de48fa
BLAKE2b-256 2ae8d0644bdee21e5423397b598fe595a6c01ea26e809610e7837ada7e82d806

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d914b805ecdb4f3047bf28a8113b78165e65fbcf67ea19d6db7e627a398a13d
MD5 f021f4e8ac907ddfb1b893a71016a558
BLAKE2b-256 1c126dcae3aa7d00641e77802b88f3e25495242172e4c35135144bdf7805a823

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18c3ef357c1860144384e50ccf4e56732ab5c66f8e90683befa55af3a8e231c3
MD5 d5bbe4a2cf2abd5f9e8c63a71ad3f397
BLAKE2b-256 442b629f4ad6db28377a82d293bbbc6737d0511a21c2b209ab08d34bb3dc6a9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6bc8ddd76dab2007c3bd40b73be05180f6888452f2286287342f6c40c7a0f434
MD5 ad8a774e2092574371a63c841622c472
BLAKE2b-256 fa80947c65b67c4e25f3064102858d7d0367fafa3c70333fee4668ce8498cf46

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1b67f0999052b9fd8e3cea2f3a4c4279cd4f3cafc76d86710ddc65cbcec58ca
MD5 49efafaebe54853e6e9b0ad889a51e3a
BLAKE2b-256 c87c1ea72dfb262e3c678af3baa88b5163146cad562540fa4aef4f3f41afa722

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ebb5f8c1879d2ffe14a2bdfc99f8b78b01b8850980d979229fef001f3492005c
MD5 cd1d066a5ea7dadd4141bcc00da870a8
BLAKE2b-256 3df4db4e464d0c61d25e6fade298538cc3c2783ab3dfe7b9b01352fbbebb886e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3f92d9f6668565545ba97cc6fc05f8d0cb438c1dca8f1a4e5dd23b58086a474d
MD5 0d20144d404079da4623c3c738bef30c
BLAKE2b-256 998a14d25015e8351e66638b0a09edb746173f4475f6945f31741679dc56b98b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp310-cp310-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fcccc807701dfcc621eb4eb8bd35cf46a1f73a03a7d405e1ff839866907d1ca
MD5 1551bd2b8fdc5fa85253cccbaa77787d
BLAKE2b-256 2603fe1bcfc389a0e31728e7e3d31dfdd5d133884cbf22aa6e6e4b38b86df6dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c73c3374e32bacdcd76edfd9cefeadaf9d76f99ffcfa1d1141cd69cf08c06c9b
MD5 35336b6e7ccab47ad3672616179be095
BLAKE2b-256 4bdac3c40c4f2fc577f20fe466ad749093a767336198e4b34670a5a03728c899

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec0ba4de8ed728d54856188573c14f58aa25504e22f6b411c3cb9ea1e4b25d44
MD5 108492a081ae1130dc8927b3fb99269b
BLAKE2b-256 aaaa0a6de2a7ad1d8fb71fdd5ddbbb23754b7736c1d4d793027bd2f9d931e467

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 709cc7a0e2d9fda96565daeac1af2c841ece1df2001fe4b787abed4c4b6ec95b
MD5 c97c7414a0c304f6603878def006a552
BLAKE2b-256 7d4f2f84a27ff1d7a3e9f0dbf7f46e65c9ba920603eee5afe3d0882fd172c070

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 637ff46e6d7c952c4429de5c0373e330a89bf4f00ecfa8887936557a0c407ce1
MD5 ca5b30cf09741226fd4198a93aea2ea1
BLAKE2b-256 7b173e785f06f233ff642540f35e232e408852adb357b33af670b2bb30d849a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2804ea27bd0f33b2c631a9c8be4dc5d1435a7a0b30c65d852fd6d4e89eda9867
MD5 056591b1ec750cbd2835bdb5913a714a
BLAKE2b-256 f451bc0962fc656e7a293fcec5c1ff1a4db87c51197f1af4a3f745e5a914abde

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42495b13d12a795e5977092f1a134a6fda0ea0834f39e61b1d36882956767a14
MD5 4f16ea1bd23bfc1c05e5a4388bd454e9
BLAKE2b-256 5fce603e5c767e847d26f0b73417544e1c3130ca6fbae0e4e8c90b29cee870bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d2bac14042a146c6dd1d1bff02f2260ca1efa81e415ee1e315bacb4bbe80c2ab
MD5 f6a859b575fef3e2349aca45f3a2a2e9
BLAKE2b-256 3389cd5258aa6b94b678cbda020c293a5751ae0c35e801401ec271437d896184

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc41164ddce3c26ccc5447cc60b40f201c66dceda82d7acba2594119f6ecf13b
MD5 7e2416abad6402a87556e8403144497f
BLAKE2b-256 ab0f2c1fc09997e8613e1aa2136fb3a0c5566b5c5785f519c7e868a6ac0d753a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a39b90f928a4bc35f8f13e49bb6f44ba07172f07a6da8c393d29d76b3eaf5648
MD5 c1420375737d6f07c51ea0e2949ec2d1
BLAKE2b-256 5d7e5908d5ebf60512f0804eb0b398e1d48148e4ac7e375e00d69bde32148ad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c286acb32f2a977749e00c046dec2dd2a0e6b51025e5d56793fd6a2c3a963ea3
MD5 bf8d7fa3a5f7bdb444734307fd7da07b
BLAKE2b-256 0ef08cf1848d3c2c3198080a116318bd452100b38b12859c05a22eacd44ac54e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0750c1cc5c25e77399c5143b4666090efb317ab21e01e050d3f0c0d1bb35a0b3
MD5 aabd51829dc681927422fb17ef56349c
BLAKE2b-256 ded685bbb7ac1bcf00ae9a133973f4c7018abe136338c6d446982079e37508bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b0415febf41363d70ad5f4d4580cdae72bc1b976422c7d49a0851688fc4a308
MD5 ed429a40cfa0629947820503ec3f38ea
BLAKE2b-256 e58fc6b65632bc4868e3efd5cc408fec09e28828d9b47e07f39a2a8e97c48a3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f514dd756a731424be2050a20bc391c10d32a03ffad6983f514285cef77d3213
MD5 7032f7749f991e5729e8723bdb88d096
BLAKE2b-256 8806a5ac650666a321fd5ee1ca4113451f898f34cb1f71349acd56169cfcef19

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35580e207be5d36c674dad523e150394eddb4e569bba0300bbb8fad370710c89
MD5 e7c763d43bdef0647e2fdecd78a7f1e4
BLAKE2b-256 16768d4404ff26753b490cb13ce9b16d0dc1652231868b4f6490fdeedbfb366b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 085763091b413b47027fcee426e7a1cb826b9716ee7f58b86eea322e63acb219
MD5 0375e89d64b6488792bc03822e9ab288
BLAKE2b-256 273190e7a7e1b8bbc2a21e0cd7eb17eca52424493eb12418034a267ac23b653d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f340d4b88df7b33c59569fb5d2f28f52718ce933bc26bdbaf760ae2193145b78
MD5 85b1e861a872fbe2958c96dbe21f23eb
BLAKE2b-256 fd2ae477cab5bacbf2fc46b3c945eb2d4664d0623efd14364d61ee59ed1aa9f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8202abc0be2162616f71b9d4472be3b2e4ef7f6bacea3b371399c59ac21f1dd
MD5 ede818c16f39347763b7eb9d6539f514
BLAKE2b-256 34bc09215b3393d5529a6b7c81d94eec5164dd7ebccc6263087b1ac478d50b72

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8449415885cee67a4d43c7e1bc4a439a9ae1f3a47412098df8d7b39271f2165e
MD5 262bc31a20cd6be5120f584dfa864002
BLAKE2b-256 690b9009c08937512892a5878e8f7e272f876216a298fd2f0d80211720e38b86

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0583f0e0b9179982867559c33ace7cd400e962861186d0770a4a93c5aa860d10
MD5 137d95242be0c09d666ab3e316b406d1
BLAKE2b-256 d6d25a099f37cad98fe15b503704a7a6f88bc432b40486b11c0f6e3e61cfb6f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0bfaea70db30b94fdcb1f8d4351a4be48f41f87f6ada7a36269b2f3539453d45
MD5 1f264ab13bf323a6a3903b72d93fab4e
BLAKE2b-256 c0b75f9ae9fcaca73e920feda46e108bf68b0297c542c51d25b4f025a46fd201

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69c82276b7f05fee8f2b8f4a8e1849ab3b5aa1f696d6d3fe7a0b154a6932237a
MD5 3f22b3cdce86df101a156f4debaaa7ca
BLAKE2b-256 d4efba7f377f17886556d014fa2ee03aa046bc18905f61729a91d0c9dc4f0e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 46ba0b8ba5ee77330dbbce15bfb072b9b84466743deb3c02c0a76c972152c923
MD5 77ef799e44c6317e999675f6627d5ed4
BLAKE2b-256 8fcc2743d0dd5335274815a81e71a40930cbecc6a079f84c0e281ddf4dc44797

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-abi3-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-abi3-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.4.10-cp38-abi3-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for diskcache_rs-0.4.10-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 18d1f06991036d265d2a3323f23c4dcc18961f95383757ad73242b53bda55519
MD5 5d90f7b30c21e8b505d236bd60756f4a
BLAKE2b-256 d85ecddc07025d9071ca69c5531cd43b3ed813aba8b6590352c57bf02e9cea3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-abi3-win32.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9acd3fd69490ddfdd39fb4b1fd3368d2b39f9c24d112e6b5688aa4b8bb9ac92
MD5 1eea76f9295f71f8108b95b726907139
BLAKE2b-256 b70f07e3a01850047a3ddea015fe5414c81d29e233927af1666937d6a8fe353d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8e2062f31dd17454be3f1d5bbc3a8605c70c8a32ddc3b0e36716af8027e5244c
MD5 bbab14d95b9b956f36184e0af1e556b4
BLAKE2b-256 673d2dcdea8d234299674715b3064d25f56c1e6ffcc63e3f70500aea160f70b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52b349141faa292da64800b52dacd2d628705e29a80898d68973894ea094e717
MD5 e9a879faeeb99c6a3d7e655794164329
BLAKE2b-256 0e6aea627a8689add25f21197fef1ec723dd30d08366d99412c24e429426f030

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-abi3-macosx_11_0_arm64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.10-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.10-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e5c311ae4291b0c81a4c52ebd9899137f5f50ef9e899820019d09767bf6ecd4
MD5 c99c792a18406c7e1d0e627c8141a97c
BLAKE2b-256 f0a0cdce2474d540d2593a04ce745a81ca87c1556cc1af819121e5d6c5096d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.10-cp38-abi3-macosx_10_12_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page