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.5.tar.gz (168.2 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.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

diskcache_rs-0.4.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

diskcache_rs-0.4.5-cp314-cp314t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-cp314-cp314t-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

diskcache_rs-0.4.5-cp314-cp314t-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

diskcache_rs-0.4.5-cp314-cp314-win32.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86

diskcache_rs-0.4.5-cp314-cp314-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-cp314-cp314-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

diskcache_rs-0.4.5-cp314-cp314-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-cp314-cp314-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

diskcache_rs-0.4.5-cp314-cp314-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

diskcache_rs-0.4.5-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.2 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.5-cp313-cp313t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-cp313-cp313t-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

diskcache_rs-0.4.5-cp313-cp313t-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-cp313-cp313t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

diskcache_rs-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-cp313-cp313-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

diskcache_rs-0.4.5-cp313-cp313-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-cp313-cp313-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

diskcache_rs-0.4.5-cp313-cp313-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

diskcache_rs-0.4.5-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.2 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.5-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

diskcache_rs-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-cp312-cp312-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

diskcache_rs-0.4.5-cp312-cp312-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

diskcache_rs-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

diskcache_rs-0.4.5-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.2 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.5-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

diskcache_rs-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-cp311-cp311-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

diskcache_rs-0.4.5-cp311-cp311-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

diskcache_rs-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

diskcache_rs-0.4.5-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.2 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.5-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

diskcache_rs-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-cp310-cp310-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

diskcache_rs-0.4.5-cp310-cp310-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-cp310-cp310-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

diskcache_rs-0.4.5-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

diskcache_rs-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-cp39-cp39-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

diskcache_rs-0.4.5-cp39-cp39-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-cp39-cp39-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

diskcache_rs-0.4.5-cp38-cp38-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.5-cp38-cp38-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

diskcache_rs-0.4.5-cp38-cp38-musllinux_1_2_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.5-cp38-cp38-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

diskcache_rs-0.4.5-cp38-abi3-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8+Windows x86-64

diskcache_rs-0.4.5-cp38-abi3-win32.whl (1.4 MB view details)

Uploaded CPython 3.8+Windows x86

diskcache_rs-0.4.5-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

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

diskcache_rs-0.4.5-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.12+ i686

diskcache_rs-0.4.5-cp38-abi3-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

diskcache_rs-0.4.5-cp38-abi3-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for diskcache_rs-0.4.5.tar.gz
Algorithm Hash digest
SHA256 c143af758089d86398f7e6776523fe0e7fd57fb851f0e428fbae455adeda5df6
MD5 d87d152661363988217d5966b2a11729
BLAKE2b-256 5638cdabbb1fc06245e2cd78cd0d90337386046dc46a97dc0d6c762ab238ac77

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5.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.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c428fc15a00efe4b7a56097226a1b0378f5b2afb39aa55a08e90e1d20322c175
MD5 309f30e9d456b0a6501610c359b38991
BLAKE2b-256 b532a8c47489ed2bace450cdacfcaa05adcd8a911e9cb2fc0064dfceedd7f13f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb28c06e3e18de3efdd44665391aa43b3a91f4d7512657780c1eb3c9bdb72a4c
MD5 10618277d9035c8aece5910b45a51887
BLAKE2b-256 904fd922bf7fe170c1b540fdb659108450b45ca8664d42f5f1cd6fdcdac47378

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6464b9ef0e8d8375467f1c30cd13627729d7c8561250fe18fda35511f1113e7e
MD5 d9af3db8ff328ca4847ef023a8351d07
BLAKE2b-256 03a823c1399787d1d3f0e9bbe187d62233856ae2daf0bda66365a9db2a552aba

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d600d65182fc7ed4f99e4cbacdbdaf15d75bf75763e3c74ca3817aa294e7853e
MD5 f88b26163efab893148cbecf4fa180ae
BLAKE2b-256 0cc11c4cb26011e36a4ffd112c8ce291466517e155b02a3dd22663d4c7d7ad02

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e2bac4b149ce236ab2e4ba51b76bd8e88e7beafb4b7ecf577fb079cf316f292
MD5 20b01823b544cec6ccb62d5726a81390
BLAKE2b-256 49f7d06adfc6af72b3c541e53e38e94cbfcea4081bbdc8764ebc54b83c62f4a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b07e911b883abaff7597ad47c83ac35375ed30427bf3fd0abf15d6ee2831e9de
MD5 92b8b25c2ccbc7efbaca1695b5c8eb83
BLAKE2b-256 c348b2d314d8d1753f8a8df1b895297f6308393401a2d5fbc78b0ea021c069f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfc6aac61ac7e016d6349fd0fc1f9d3b3591ef48b7eb5ea0193559681c5c0057
MD5 c9301fc10542aeb6b1132fd4c793a8f8
BLAKE2b-256 0a951fbc14fc981ef5cbd3b1595a19c054589854f792f64ad291b6f213736274

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c7e9c2c36ea51555891cfde6be830e77f4561dbc3aa13919adef5d4a856e0a31
MD5 ae04891a04fec2746c1404ccb313f920
BLAKE2b-256 6ebcaec83c9ad9112ad4485c22688f0055dbed5962f1350e291211c35303edf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2002ec06e2301fb94e5d2a82718239023f6448da34c56d587d97efd54a5b7f3f
MD5 c9664dfbaa654f93c87fbcc74a8acd37
BLAKE2b-256 24739ee050ad4a249d5fef12fd55f55206781c88cb8d211925508fac1c143d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e350591ae8000ecb1a545644287e78b7485552b8f74c52725c35d4db5c1b0f2c
MD5 05952e42139115bd618d411ef4e679cd
BLAKE2b-256 640047efa2cae2f3144d30b8be6444c00888888c6039267f6311e657a3d2c27b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b840376e5f2315ff70e775fa1660e1837fd3afe4aab78923a95cf9acf939bff8
MD5 a050088b89a3c30014293693ea127770
BLAKE2b-256 1daf67f34be240809d4ab19efc9397a6b82f05e9f4f59ed5bd35014d261ec5bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c80d427582ed9e7294583336d2a56facf9dd8d18856338b18847c9a2c93cbe73
MD5 ab23e3413bb382c223f2a72132af0bdc
BLAKE2b-256 5a65142d484ad825ae8531adc162e4e18e8bdeb5fec49bb819f5c924758193bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90373ce5d4d0ee7d5d36744daa3bb1c58c8137ed876a0fecc24db52cab449b81
MD5 bdbcd7d6f41007d6fb5b1a5253d0fc7a
BLAKE2b-256 cb9297ced78b253ed9117ae40f6b911e236ebe39801d9dcbd4ea8646d1cef941

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 038efe0314ceae325c7e2e4a2591c2f542c45713880be5101ba6c93f482b222e
MD5 0c1221426c254cb68dd9ce1299a2a986
BLAKE2b-256 1712910b4e0d49aa4db45ffc782f9f55036a96a706b18e2404fd1a690cb6531f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 56fe2bac45131a8bd23b17997bb6ca87c02e39b3602c14293b049b5c6d41b37d
MD5 22d4ab6e34542ba9ee380e5140491a34
BLAKE2b-256 fc5c45b7c420dee929b95cc5e30fe0db3be03e93f95d4dc7a713cb6aed2ffc28

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cd874d41d2d3920faa1e4437bda2d24c7e527b6d5a9959fe142b48172f931f81
MD5 1220105cb7c5f771f4ad1bd001c2801c
BLAKE2b-256 75cf7a2c79c71f4bf2d623393799e722da7ccef3195ccc134f1dc40175cf3476

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 235776046c00afadf03a58cc58031d3972fcd9e1a6f8e5f47ac3a92f28e689a8
MD5 b20d7fe892c24a1a16106d094790cccd
BLAKE2b-256 246cdabbbe6089e2b36fc4f45cfa940ffdceb5063788627dab87ae4f6db2ee5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a9ca4e46a9b45ed632bbe64c9dfc7175fa8aa7bedd686f4201750441acc8817
MD5 e6f0da1102dd1ad663ab15a035ef6522
BLAKE2b-256 b41637f98f997c002e8f8c89b97a3bb33ae80a56cb6d583814c5191856c9306c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 34cfdbc9c4d918faad68a1ce9d1884fd3a18f44c45c8a1a7594ee68e6977b5af
MD5 ff48446ba1ad095f558a417f5c6ba006
BLAKE2b-256 7845f6f750cb1cd74188fdb8c99b6231c6a1ca1150ccd15a994513e78124f4a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 712ffdfc242adb5f73bb60f6a7c5b15efa4a4b12dd7b6fe2ea28094e87f48e73
MD5 7bed4c7b2127527bc486836c0ada872c
BLAKE2b-256 e95e023b42b1fc882eaeef0c5175cf4dff0d5731d76d41ec638019496906bedb

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13d7fdf3614e6ad412e5d2d6594488411dd85fa5f13ad5eca1128859ab34f4c1
MD5 b94faffa8c7b6d8ab4b16427cd2949af
BLAKE2b-256 dada765314abd187a2a51e39b599c7293a40bc6c99907faf7afa8bee983bd7cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78c5012d4427fdfb89be46a7a36394cb737f1061d1febb7a09d8f2f55d084008
MD5 4378f0616d48f927c0ada40963a44913
BLAKE2b-256 f212b199c19387f18979aea988795ec3e1a56d1772ac7819b2aac990714dd9d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f020f8c867d74547fec66a53362af0f0ace2b5e0165e397e05fd9cc0a196a139
MD5 2a77bdf1a108d380ad8eba588f660cd2
BLAKE2b-256 1997673ca2639b48a402c470fec59748cdbcebc1ef47c5d9c9cba54e23942172

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 867d9f3639d9e1460254871faaadd0062b487ccd674f2b3d69c5e7730ce331b7
MD5 3fbf9ee20ea3bf03949392e134f64c3c
BLAKE2b-256 8f4c9bd99e0fe28e8180b9884a0406f8750d4fb0ee757dc02b970bf1b3e31336

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6317e3053d170882878c330148f96b9d609287a9a21e01411f4fa26078e4da5
MD5 63240da7683c0a562bfff84a8ae45973
BLAKE2b-256 0f3aa33fb996faf7ce36959fca31f42268277dc45e4b0a068284be21e731e2c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-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.5-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 13b12d9b4c6cd6181cf4d21c3fc6313b6b575e37cf70bbd253047e6740758492
MD5 98f04464c5ee89865a5ec4e765cea1e9
BLAKE2b-256 2bfc98a1dc2131c1ad67fc5f3611b7c144d3af9399ba7aa05e3dcceddd319117

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 887bda693d595a190b7a6efb732fde5c2f3df5ca024c212f86bfa42084fd6fa3
MD5 dab801c55da181415967940d642b256b
BLAKE2b-256 a719d57c1f2dea60ecb9392c3e484fa8b1d464cf6113527a1ac4737e21b7ada6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5b4d2c2fd7f458cdeae9b122e4ceccd2554b466f51aec5508162f4eaa82a53a
MD5 a0bc04a5c9c897c703db440ae9209088
BLAKE2b-256 9eda7f3b0de2d6d80377edccd25ccba6cec6177f452a83952286149dd39a1caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf7488ee62afe43e07109e49a609695da4993481727a4a2889dc15545596eb8d
MD5 67987ab12a2c217825563f1a3234b2ca
BLAKE2b-256 763461815c3bbfd2260cb45f57a3f5d338df37b405d1b001ae6a01dabdea4dd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8c40cb3bcd8225fa18bc7448b33718d84f0d4d7d42cb9c4379e75afbe36d237
MD5 32f80578685ffb3eca7ba7977e040b7a
BLAKE2b-256 a2bf519c4cb47eaaa31438442c4b47e47f29447b6f38d2ef5335d14d76852d2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df3ac0d4fc220954f251a32acdafb142335f183304ce5c0cddd7a43d575cf4d1
MD5 346af4735376e6c4a6c41ec275941583
BLAKE2b-256 dc97d9a524300815a5cd3db7ffb78061e73eff9eaa04e10970663f3949bb8cb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25dce7924bd107e6d0f9a216df9164e91d2ce6a80ea7e99038307eb593de69f0
MD5 0e76b18dbad7a6751a578a7f9e3c6e4d
BLAKE2b-256 36ed5ff6dc19694cf8c1096c2bb19d8808a35f850454578bb1f0052396a1a0e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 67a6bc14da2569336a14652cd75a234350c5a96f0d48faee79bbab8480a01b26
MD5 86d6deeeb9fb6d451aefe3191f6af4ac
BLAKE2b-256 61dd8c277753185e8c411b0e8a9e53624bdc8d4518bd630022e4e585a78b8afc

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 031f6b363163238ebd448b24fa2cdcba2ebffe8d84a916466ffbbc648271d61b
MD5 6e54e6eaed6817df41cbc542ada962b7
BLAKE2b-256 2a752c5d1406b2846c5a519f1b4d8f435c3dfd8be5c863b5a6fe62d87964f493

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b05899f55e472ba6db49a9c5902d930c2b753231c193c4b743f9e1a6f049aae
MD5 933bd40caf76c04d0e63cf2c0236bb6f
BLAKE2b-256 432cc9132a2dee386e5caf9a8bf6b7d1bbdc50412c0e52a53032e94cded978e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9978f0dfc9af249fe935fb863b9538f39d76716c019adce89f0f79c1284ef5bf
MD5 7f8c5fa268984771b3ff506b501baef3
BLAKE2b-256 9a76d38ef7dafee9490f7dc2fe4adb49c5aeb39ffea8b5ef50d4dab7e54aa1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8b34dc5c172f1749bed287b4d5fefa085154077313e86833e70a28ffbd0c885
MD5 942132b4f0a468fbf69ad38de8934f78
BLAKE2b-256 e6cfc829ad78255e7e211b5fb18c723455ea6c8085110dbd2328313b0c175533

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8808f8be136323a0052f331a321ccc6d300f7f5dc616da8aaba2984fdb55a69a
MD5 06273c2779335a7155a6253f9486e717
BLAKE2b-256 582116cd8262eea596a7c21ff588f1dbfee55ebc138f07bab71021cc31cd34e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e01587051fcf81ed756c70b85cdcabbdee8f39362cbced6738e368f53224d79
MD5 14800be4022a568115f33333ff116311
BLAKE2b-256 e6e05d59f8a502e197c8c8b090a6468a495dd32920b73d8d3589c41978f2bfbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 653aef814262a2641134fdd34401ebe0d2ea0ffe16a78405f1f6e7948ad7806c
MD5 803ef693b38e15133209622a4096847e
BLAKE2b-256 3f95cc3d8cf19392d5d8fbd672de149c54763c7f77656ce90a6fdd7c05a07012

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5a1e0a9e219bbd65fe37c6d995a5d167c8055b3bb4033099acdc5457f5be40ea
MD5 98075d8896daaad5cc29ba6c532c2247
BLAKE2b-256 aaee721cc3dbd4f53147cc6d70c0868afd9641bffc70f2b8d94a2a9a45ba2d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33350f625203ed281ec83014f48b53d3610ddcf0efc780751f5fd0a2b45edfa0
MD5 98bf343d8c8063c67817d7a0078597e5
BLAKE2b-256 ccc897807f5432bac108fe25e03a0b0a0860125b8a5f8f08e2df61786c34a1e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-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.5-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 5f139d9710c8e0ab99c4ca6f6f69f0daf025d4229d34214af4628de7d40511ed
MD5 0b83f7a64123c5473198f6b33782673c
BLAKE2b-256 e11b5f012753122ac263639bb7d2ab7f247794a5d19f84ecf6427a883bd94ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8bf22e87efe719a3699191529996e0203e0fe880961ed582a59c86db2c641c4c
MD5 37a647b5ea8efde5e7d971dc903ec928
BLAKE2b-256 b96932586fd0bb2f305df1aa063e665e8438c940a31c69115222484af591009f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b2ed6ae737da314cf48af016fe32b0a5a07f29d7c96470bcda6a2d62486e73d
MD5 bb0804f90f4062516366e652e242bbf8
BLAKE2b-256 22ac547ee00c2a32e2ba25572b44ee0c1f537438fc8c5ba4520265433a7b116e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3bc933d3a005cbba96d6d9b6436d1e252fda819ce1c238241dea790ecef3ac17
MD5 296af466404f607062cd87c04a954ebe
BLAKE2b-256 f19a3e137ed751947e965ea8a58b016cf18f59e33347ee395d289945e13842e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ecd46ffcea1b41b0f74679b39e7ae4cebbc522820baca64f45d29912e0a0cfe
MD5 f8cd0ddd708ea030440604f6e7d1cc8f
BLAKE2b-256 1dab09409dd678192d25f7e4b6f01677c3e1fdbc8f29ec6b4ac945e8870c7ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4dce2732fd5254045f5072a9aa1a8837af2097035314fb8529ac958871a40b71
MD5 0481b89cbe9acfd903af6019aa5e147c
BLAKE2b-256 e8715fbe0d4f11c3b8f9140c945d1902ba83b3ec0fcee9e7da2c5968c45ac5b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 293cea85df7ad6166d226ff359339bef1f1f2864c6b08ebd32fb140e42951ae3
MD5 4cbffdf39ad2b73bd442879530b2d2bd
BLAKE2b-256 61ae224d0f36b23302782d93af5b2aecc02533630232c9fa4c418d4582ed74fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bbb1c613b07e406216a00d9501f1248835c585ad84bdbe0b51281ae532926703
MD5 04a07d264e0e30892a06eb928f2fb9db
BLAKE2b-256 ff80e50637a8ee35600163cbcf2ebcc99e0b4742aa7284387bc9d8075b6185a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e14afd032c85950a595dc226dad4c6c9f7e33911bb67b4bce7fdaa7b5d435f25
MD5 5192504e1a463424d0ffdc6ce05c5e5e
BLAKE2b-256 76ad2352c15e2a237efaf7d9dcae65ced2331d1a9a5e2a5d16e75a8dd5752c36

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d7e0847a404650adecbd818c0c44d87dcc9ce005daab740e0bd030b1ef78d581
MD5 2ad6fa57a11102d847e45f26e041e436
BLAKE2b-256 cc7299904cbaad2c0c5638d27bdc7e90cbe87cc7ff5d6839d2438b4e88ea9ee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06e2eb9af07e52b6d7053a3a1e684ed3cf047610d124b1d75635af9acdbaf555
MD5 e275c87d1120ea32948358deeccb57c2
BLAKE2b-256 fd3efd0e43134facc99375940a7ee9b9cc5b7a58ea9442f7f7b5d808e13aa2dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-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.5-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d917e6fe8d487e93b6f65eeb3054c5d6444ed86260723a3b3dc6246296ae91c1
MD5 d64682196623acbd9264ddd67b261595
BLAKE2b-256 54b12e11a5a309bf53e4f3d2af03f557f6d4a91b9720f5a86e0c62c88be524f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 da52d94c630d16aff9cf3f12af7a1d957c518fa18b9633feb1822565d46c4ea3
MD5 3d4869e16044865d2d69396c80b35771
BLAKE2b-256 feb8c53d9c2b7ec6c214ac34f23ddd465aae3aa04e0d140084286ee802adae95

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95ac820b0db96c2dd186d5843f1d2865e22e16faa2402b1b04d968623ca06659
MD5 f7fac9734787f5ee884887bf8a1a0ab4
BLAKE2b-256 fde35ce0529e3d55d349bf95837652876fb08187e4dfdc03619c0c699e55a4e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 598b4b88ed8496c2bc70b5218b289592108ed90ec05d96c0ad251e0958d37ddd
MD5 e2db33d48439030b02bdfd876a0f7f1a
BLAKE2b-256 debce828415be185d78f855e83419d66453bda36a2c8bb9e13340bfecf4d7781

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03d9a3c35f72da415fb3bf4fa6666141c962ece81238e6a1e7b27fa34f4d78d1
MD5 e559bd8575d1d2d9144136288a03f455
BLAKE2b-256 a74cfea83e5b2c77b89dc99181a389685a6a839507aed7f222ee6ee7350b7469

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 832acf0d07785e1243fc4d01a9d5ad51b05eb22fd3ac054ea1ccefc859cc4668
MD5 12d6674d8939ddf71189957084b5a80d
BLAKE2b-256 09088b79c2e55e7f52e7191d6487bd1805c96caa9ff2ea28492f0e0f4cb84706

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 346913ee7bb2d70ce066947ebb5737cdc848f7c77e61a1e4e14f2c39273fa81d
MD5 8bc49b35e2b14c711e4482cf6cd0ad7a
BLAKE2b-256 1a22f42a8765d558c22253fe4c73fe00370eb8b1e0093d8d34437ada824e77a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9faeccbb433be9e87020b1afabe2887d259b89cefe40944749dcf2e7f481ec1f
MD5 c61f267fecbf46330b06cad2062e5321
BLAKE2b-256 9354220cd586e55efb26c9650a04b96420472342dae9d864f35136fe544ddf88

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 472b3e9717fc08230e20485490e4d296937e5c839742fbf51870a067422fc5a5
MD5 ef6994f1a63955028d99a21955099e19
BLAKE2b-256 75a42628df47913ad842ea70da4cf2bdfc0cc13aa6d9ca32b400b1e8964964f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 36d66c249ca5023ca1f69726cfea7a7cde685d9945aaa5a36a3181587c05b819
MD5 77631c39131721b49a9a18ec5f831d97
BLAKE2b-256 e9fc03767970f53df8f0082f57916da43e75212744583665508d5c4471bd29f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15dd642d07ee044c94bf8efc5d3729ef34b6ad87cffa18e69db4d53678391e69
MD5 1c427c253ad2e1b5ce9151adb92ef2da
BLAKE2b-256 193bdb218090c34a87f7d5715fecbe171feeb98ab32bce0f19a220e7eee3474b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-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.5-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7f20f46218d52ee3294686813df47b3f1ac6c84392ae8762be695df55bf8e2af
MD5 d8114c4ba32832b28fd377134437cfab
BLAKE2b-256 98f2fa85d8b8d0d7b97f3cea7f5a44db5ba13fa881d3b073810774b0d620beda

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 452ee177f49571f8b90f1e93b1614cae5919b4d36f1158381fba5749c3bd9cda
MD5 adb7f19c23b03db040ea6c04d33e2a4b
BLAKE2b-256 55c7b0887fbad4268637742967dfe4309140f67300e33bd91312a7473a36732d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 771e0b66a0ea5da57c9181887383f537c6ac2e8b93ef3bc33ef38513957fdfc7
MD5 dc20935b7a268b22aeb7b067ddc116aa
BLAKE2b-256 8c724339ddfc90f227902b53f462b0e52ab24ca75b9daf14cc76e14dc80d1b67

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c4e2ba7760f7a633f05516ba58ceef932bd2b6d5e9d4adec3ed152a9dcc3ab5
MD5 a165f6c588bf478e162422398e44fb56
BLAKE2b-256 7e026509880cb2267a1f76686d6ae113b8c4e1c1b43a27843593696a83615594

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 444392661f1b9fe7b8d4e8ca6bfe9c29ef7f94944ef627908e0ad00af39e4dd6
MD5 54691bc7ef5b190e6da0e26751ab11cc
BLAKE2b-256 ca08f7125ca63fdb1c974468bb1ca77db2deb7b302aa4ee656adda35a3183abf

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d98d7796e681796e07f62a26dd0c8e952bef88c2b03675abfb90da6301df37c3
MD5 810b6a61eebe08b3a1be4e3f164857f5
BLAKE2b-256 2bb62044668e4120d0cd29b90f9e3675d0e7be095ef3e9921cf29ee4247ce9a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4461fcd0d0913982b027f6572161299ffc7ed27357e080922a06163375b20035
MD5 f19a1246ab18623e18a47fa20df13642
BLAKE2b-256 b4a5006bd53ba84c057f5ddb765bdd1214aa3024c9f6c079766bfef9c98bc643

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4623d227074f03e48ebeab25b58331e924ccf9ce2067a6d47cb257a536440136
MD5 6468e35f59681f572b9d760bc7ce2342
BLAKE2b-256 eadd7daa2844cdfe83b1cd2af074f0dc155b0154feb46208d2060bc1ba091032

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36ca75ade7036ac9c9a868f407c9742b2e4fe07c2a6b250b7954eee648366798
MD5 8b3647aa15c72c82ed5cdce27520fe3c
BLAKE2b-256 3ee5b5b408ddbf145007798416c9f10a8be783835f4f545b4f83e8a7ebaf0b93

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 12234ce0b34c812f7837b854f27caa339058af12d15e0e50397a7b7802980447
MD5 c07dd2e1f8c74eba33b54630153f699b
BLAKE2b-256 5464858f6c19cdd03eed0e2d672020dfd7cb5b6ea60b67dc1f379125ce9fa4b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: diskcache_rs-0.4.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for diskcache_rs-0.4.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2aebc87687fa9bd8b4bf5a700897e57afa67df3818bb0c3a90a46846522e8e71
MD5 7e6d5c590e07a87bbc123674131a2b92
BLAKE2b-256 aa8d487144cfdd8d61738c6609616a4e7f78bd2fd7871adca472477403b0ed3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-cp39-cp39-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.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0094dd910d28e92123a8663c75ec0cb179d9403420637d6f4fc64ac45e0f210d
MD5 663cb28d3dcd6e05659ed5c9d2c2ada9
BLAKE2b-256 4c9c7229fd1df392a317a56e8412aeaef62c251accbeb6ac972dc9ac87edc49c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 814679e6c7b98601ad5451e4ec1024c62dd53d6f0bd0b54c8e78254326f3e676
MD5 3e39722b62a48cb06e67cdc7ae4a14ec
BLAKE2b-256 644dd2737213fb6977146918ce064e20f449a4093b51362811cd38d6f9ed6f17

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 76c0d9de0c68de1fd424cf589d66eaa3b5e44f940305b0991e9db6460f8707a5
MD5 a0300dc40288564b0813bc012748d9b8
BLAKE2b-256 28e3ed5e0e4dfd96de7312acc5dc0e676571d20a1b961bd912950be3ca0a0946

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ffadc7f0a4f3293c40d962aa85dcb27a42626275d6400a4aaf8aaaeb88e78a6
MD5 60e8347b9795090d319a23062a87099e
BLAKE2b-256 439e038870190ef06681dd204addaaaba223bc191e1b0502ed8e026ca2af0d92

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f4aaf721770273c0be2d0e65e376ba3b7f58a4cb9bae7dc67a088d1e721a05c
MD5 e81e96715d2cc593de658e7a5dcddd32
BLAKE2b-256 fbe55571ee9984640ddcc4340364c243b05e679a5a9437ea8a8eb535e7b31ce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08e2c189fcb130ee7dd5beb292c115595df7f84240ffe14144aaf13e60486ffa
MD5 b6736e3968d2a533e605dc3c07228a89
BLAKE2b-256 79e2d30a7dd8a29122b7f41262622f50ca0ca775ef8ec91c41f0a16e2302188d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b67b3ef2f4d33762bda7360db77f7f16c0d70c713312cf2f57555bbe47a190b
MD5 ab5be8157a0544807fcdb5a5e2c08147
BLAKE2b-256 e895f9e5957d759c46c7bc6af0dd60a1186b9192caca221ad701ad9f960979e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 00887dee267e72431a0baacc7c2b8cd734024c41f62a6f4cd83cb49b33ccee01
MD5 b93921d9cc9d2a53ab4820d589a300da
BLAKE2b-256 0e99244397765110f41423bbccb5e08cb66bca0420e8fbcbd6f39c85c21c1903

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b477df5ebb3f76d401ef25888dc6661d86470279a566ff640ba31c000485f9e
MD5 96e5e345e77f05e4f366acc64badf4f3
BLAKE2b-256 ad151759a53ac8f23cdb5f45bb4077e5ee02164e468383623d515cdac1d561f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2c015be7e58c972e4a9d2ac6ada03d7c222ffc92fc59759b5d154149e489b8f
MD5 6ee4a98e684f9db1b84e4e5ee8719b91
BLAKE2b-256 3f7bb1653b825b0ae4aa312c44497c8c65aa2fe5269d8271f8e79f018102934e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8aa160f038ec9e620e024bbb46037055790c9156438c1adba96b2f9999179598
MD5 873a6860eeea8887c077eccdbd1bedfc
BLAKE2b-256 9f4d66bec506f2b146cddb48ab7a51860a07c4e7a8c711957de2b9b083e17357

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b64c9d01a92bf89543b3d94b53318176a3b6dc078fec99cd152c35619a1fa23
MD5 cfc025bbf38f4acdb3e335e8c81b52a2
BLAKE2b-256 fb7102fe79ec33ea5392c2b76dc5686b5dabaa04d151340047e758424e1ac83d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00459bb1012b393adc111a046f9ecf0d1f1e8c581e9d3a7f5e6f140e8a77a04d
MD5 17d2d80f4babd097ebb4f5226910902f
BLAKE2b-256 7110c73317930b3912d3eef1028a14735415ef3e961c0f42123532655fa3a3fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-cp38-cp38-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.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 698aab124c318e09d3baecd2bde19046ba273275c201839726f7622393d0acf2
MD5 56bd025f901670a4116a55d04dff1339
BLAKE2b-256 56a82e40a4ef388bf3d7a26fcd6aaab6fbdd0b7d2627d96af03c538931682c8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a31043e466add547202f58e331513d812dc3fd16f0155c6b0b8e8e55f11d2fe
MD5 44596449848744531b91aab550a65553
BLAKE2b-256 6dd9cc6499294c65d6f94eba633bf9962fb48b8586dc3768f092b018b150ed7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f79804a1bed125c074deca44e63c4d660d2564b0f597454dd896ca44b061676c
MD5 658c0da976805854f9841626f03479f6
BLAKE2b-256 feb2102f7ae6556b2631da39972060a18a1d54263d95e2687d9850b1b7c22857

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-cp38-cp38-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.5-cp38-abi3-win_amd64.whl.

File metadata

  • Download URL: diskcache_rs-0.4.5-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for diskcache_rs-0.4.5-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 7cf871cd343d9a87fff7193e2dca288776180540d931dfc3fcc9a4cdc7591a66
MD5 90a53f9cbe4f1c5397af836f46ca93b7
BLAKE2b-256 6ec2568ceb19f8e0b6f79a52908908a48ee8fb2010826b958b0e0ea0ba6b4e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-abi3-win32.whl.

File metadata

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

File hashes

Hashes for diskcache_rs-0.4.5-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 e5552907fd173381cb6228f6bfe1e4ec4dbbb0107b5f38480251dc21e962558a
MD5 ab22c4345165766806d4887563bb0405
BLAKE2b-256 2f0b5cf9538308e92950095f736ab59927c4e560f38b04bd88f12fd8aac93938

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bdd5fd16619c054cfb081d50494365eb93a8069a2b67762f5eee28b289a1df3
MD5 8d34e18391d4ebfdbd26173dc24f2c57
BLAKE2b-256 8e87e260ae86321facbae95d4deec7eead1de4d6aa1dbc2a8d5863d8e1adff92

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b290122d1cd62a8e3ac372b814396f00a085b838ce8165efb45ff50b5dcc5375
MD5 a6721bfc1552c2c08fb7201a7f96642b
BLAKE2b-256 208520137bd39736bc9c0ebcad732ea0855b48cd2eda5c1e036d0fac783ec9e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46100ef1af1cac40dcc6b5d90ed1390cedb69cafb946ada7c03164277a2d000b
MD5 d034df8826df02b72d9796322effd979
BLAKE2b-256 37155f4a958320e7492996832e41e0bee28b9da6ac7eeada4b748166abf23cfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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.5-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.5-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efc85ae055184fcffbcab24be428235506640aafd5099b79909b9ee21f993042
MD5 1728b0c71ef4f78e65a8e4cb45228e7e
BLAKE2b-256 c6237dc1ce1cde1cd9c9185c5244643a5a6fee6658cfb65a1d4d2a84dc1664ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.5-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