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.2.tar.gz (156.3 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-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.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

diskcache_rs-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-cp314-cp314-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-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.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

diskcache_rs-0.4.2-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.2-cp313-cp313t-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-cp313-cp313t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

diskcache_rs-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

diskcache_rs-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

diskcache_rs-0.4.2-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.2-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

diskcache_rs-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

diskcache_rs-0.4.2-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.2-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

diskcache_rs-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-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.2-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.2-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

diskcache_rs-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-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.2-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.2-cp38-cp38-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

diskcache_rs-0.4.2-cp38-cp38-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.2-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.2-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.2-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.2-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.2-cp38-abi3-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8+Windows x86-64

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

Uploaded CPython 3.8+Windows x86

diskcache_rs-0.4.2-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.2-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.2-cp38-abi3-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

diskcache_rs-0.4.2-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.2.tar.gz.

File metadata

  • Download URL: diskcache_rs-0.4.2.tar.gz
  • Upload date:
  • Size: 156.3 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.2.tar.gz
Algorithm Hash digest
SHA256 2fc16cd90d13358f788e02570ae59b09475afb8598ed275ea9f8acb3dd61fe07
MD5 ac6ad8637cacced4a243dd6d5074cdc1
BLAKE2b-256 959d435d8572af6d246bfe1ea1d811f2c4d868027d6b1f06ec1dcac2a6fb01c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce23da41af0c4487f98aa2357037526b8eebd78dd4c48e45918c0fc1e733b4e5
MD5 cf8136210911d9f086a8c0d84d4816a2
BLAKE2b-256 386ee8f3f463f419d7338cc1207402f06f85600cbb6ba9d052e99ca654c86fd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a7b0fd14f61df513f1a8e9778aee8a3db9f99afda0f5eeda1fb31c957cedf3d
MD5 302a8b96a5070e0883e97411fadfbedf
BLAKE2b-256 953a704243d31b5d2e3947a0c6e54a7e73267ad018eb042c84445cce9677b5ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0da257103cd9b6437b2010db70b67a8d90e018bb52f7f8a7e4b4cf5327881dc
MD5 8d41286cd12e0f4216c9dc7e2e712c32
BLAKE2b-256 6e654319eb3481aeaf033d91870db3bff77d159e72b7fc745daf74c52be92c71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cec8d9355b876467205c04c33323f96a24172b85062c181769d8bc1e60ed3c33
MD5 7f52e39b07bda6dbcf2abe35863636c3
BLAKE2b-256 1f705d42f013f502c519194ebaf99bb3ed1460f6bf014f69cc3d7a7865c3a910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3521a23a3e78155fdc7adb7087e17bc19c8aa97d85c22c709afa077a756acfd6
MD5 be191a919fd84ec8daff3d3c1ee75266
BLAKE2b-256 175529df01938c9ef7392df8a9c85c9d7ea921a700d0104a8f3f01925c4d3fbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0673180d0ce7a54ec11f91bfd51b502b8fdc1000e53690a20279483b82ae884
MD5 0aa0526e839a06424838992a19ec7d0a
BLAKE2b-256 c8ec80caae93223ed3c39edfa8588248b205c289f8f1ae06e9f4a64034e2d318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c8d8d734e2116bb0eafd3248f81304975da968c800d596351f7547406bd7a73
MD5 406ccc883ad777b5665a577e033bd208
BLAKE2b-256 1f10e39791963f1432ce4909640dca31343863bfc24f9b897469697abbcce33e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f542e30a07be4b06d599ba7698849be27611bd78ffec8f05d2d6b5e4e66a5660
MD5 12a0b173a1d733e269637909e8a54043
BLAKE2b-256 2b1e3c94607b1b5f16be996273dc207d33ac8bc6cad21a62b2798b6c5eaaeb7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8114c1584ea44c405f2ef61e47752cb9bddcffb7613833833c8173391c5f529
MD5 7baddcc502bbe038a4daed0a9ca74c0c
BLAKE2b-256 08e5530a7bc8a12da631aa63054ad322e268faaa3f00324f86c7292223b340a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8bac0a276fab07a0d75947315492e5beb332f9e5ff1844e30f916a67d0310fe0
MD5 25c18141de2e22dbfafda34bc8d3f479
BLAKE2b-256 e491a5db21667ed3b805717e2a20b0314957384737aeb096c5e742d9912d1a19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9c3e16a388a0e2f9c467e0c48ba91e528fe443e29a67f49e3bfefbb823b9045
MD5 50456d70e766f93918d596daa0908360
BLAKE2b-256 32c9c88398708daab697e1d68b1db6c678a4152bcf8dd6bfbec0e54d812d698c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7183e814c9a8090367461360db5e4073d337dd64c10834c2a9e7066593473a70
MD5 20614d18f2eed07a7c627fbbe05a3a39
BLAKE2b-256 3f7c0992526388cd0c974dabc53702b58c7747f9bec87a862ada7f0ec226189e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2d7d438989e5faa7aa39c952a6b774fa50d3401aa9995248753a9b4f6cef0e3
MD5 fa5d4dfc50f3df1dc73e056af747b4e6
BLAKE2b-256 43e4d0d00bf9c09b178243ad7a26db3eb97a5c1a2d7d8ad4ac03184b0d7773cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14cbff4e7d4ec8d7f72999dc0cf03d64cca470580d1e7e246803a89477c02862
MD5 a3d9b5a08049d863449ab33fff978466
BLAKE2b-256 293c277c00ad75aeaaabe07f05ad05b7dc33435e7fb7ef0a3855071827174b5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 50c1cba04af810c437025e48779d3d7a975826b82a3bf9d2031774fdb495109d
MD5 fd08376791b18dbee068a82002272273
BLAKE2b-256 b9c724655382507a6d7614e66242e954afc1d3180a16715f085c73b7700ab20e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b07e34a929f4b5a8aaefd35c9bfca511b38763eed556e5ca3749f12ad3755303
MD5 46e4a28899ad18141dd636a8170f2ac8
BLAKE2b-256 cec7a0d23703c3ac1eb0e1670439575d5efdc3b42986c071843dd0e28e464268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0aa90e2cddec4c39c574a85d2c50746c05ef03338fa71f4ab1ba7cc6e51b76c
MD5 664a14ca79764d633ec5f670bc31007f
BLAKE2b-256 da51632a1af70b4284f8da31a96fb7ecfdb32419bd92fef94f64bdd49f6fb2a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37c27970197e512176ddef2efc8f5322247e71e6996d2edad93bc7817735c88a
MD5 f1d64ec2e3c0eb3634c74fa1d26a776e
BLAKE2b-256 06ae6a965a7ed2274b1206692859e7983c3db00273ad4c119b0c90975107d59c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c46d9c98c8c1583e771b3bb510b7d811b569aed9c7c98fdcb8c26b9b3107a1e5
MD5 90a00cea4143b84bedc641841cde8b96
BLAKE2b-256 ee89689e77b7b832ee022d9706221bf7613c5f12e6dc2f089e5a3c9a96324560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27da6999a023ad38d261fecb349f6cd0e6c077ce1783339a4f3ee74d3c5d9103
MD5 7aef7201fbf76460767862b915947b77
BLAKE2b-256 0f40562c787918df4e3767b94a859ed93180d2402822668d61375fb3205fe88a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14ce0f5ede69a070c161a73c0ab8d4889a70561e0e6731f45195c5787745f0a9
MD5 2c443934ab146ce9f589c7fab0cc603b
BLAKE2b-256 8380bf9d63f912caaaf9ba928cae75358b3e5cc416f8d259dc715ca14093ce06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f96377244a85164660365f129ac1de4140cb840a0ab3cfc2ef70b164a729a434
MD5 f4594645399e6280af3633dc05c90153
BLAKE2b-256 22e7426cc18b5241d35d4f075569eb08f65efa7d8f3d37fd10c01ac85d6f2ff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ded4596510a5ad4c325244370c7234a5f30f2781e35dfee150fc5a9fd48938ab
MD5 d580e72a5785644a03f04a46d3182df8
BLAKE2b-256 c45dc47e6de9aaf55e8bf69b90fb1895b54cd88616a72ab780f86ec729324cdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f5fbad499c226054476c701dc2ba05ebf2e8fd108b0facfedccf04dd488ea732
MD5 a14a7ddf7954c6e54199cc4f20504515
BLAKE2b-256 b6e09b7ff6f0b52b18d6d233f5737be01b73e1a6495c1dd5f657ebf0dc7e4f44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e27c762d4c7ed37794036e758d408a74f78f5deb3a103198d12271a5a525ba60
MD5 bb0cb6e4d0028631309ca70b180dd10c
BLAKE2b-256 70eb84b02bbd594d33b6efa9f31efbe62f5943171d5b6c96cb231b79a15c5df6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.2-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.2-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.2-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8173e6355d6bc3833d1aa0fe13b2dd4c95ed94a5305111d8e29b78ca9c78b5ae
MD5 62aa1f732892f5c74dee667695ac2390
BLAKE2b-256 4b558988f9a5a19f57029125325fb0edc75a40f1a0077f2f4c892dd8a7c2f161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 312bb4bcb60748c8a9f24b4ff721fe363947bcec2dc8aa716900abc05c116ed2
MD5 45993ce6d36ba514ab3202916abe2e00
BLAKE2b-256 a5f83b0ab9c9e31ca7c7fc5f27c2c6c466a068c6b6c4f7a6c9d04ddd833831f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a4b61e8db8377986726c2883666966c53a3ec7d079693e3b8186bcbbe70911c
MD5 33c1d17e8c62c876829e4c14ae3ecffc
BLAKE2b-256 aaa9ad4c90ed957a8794c6bede39b9538319bb84b2f7451b91b917f13c9d6503

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 974bcdeb0a2748f8bc416debfa0f15d09871edd0f6ec40312bedd2a734a326de
MD5 6a84844edbeb43f252b0dded1ac5f84b
BLAKE2b-256 6f9e2512742452db03f89a8058ef495c356623aa17fd06a860354093562568dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57dabebdd067524092ef7e0cb20f8e420b13a1d99da0dca2a2df1e14f8312b25
MD5 064516d8eb1926d19c816574b2b69597
BLAKE2b-256 2148cf73b5605086a8a14f5e01ee277e6fa929b5aa2d83ce1fff195d6e917e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7be84c59364d62edb928a6686f1a83e2d7528962530ca627f69dd3e3f72c4b82
MD5 181d47fcccb950d1d8ee1e7292a528a1
BLAKE2b-256 904d2468b361129e1396a5309c78a8c7e2e08a0ea3be6f8584f6acab09bc7b2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 261b26d2e110af69787d7719c07a017c5c8b556aafc1f77646015c68274ddb99
MD5 224c3b3bf07e5e5d1de737ca399f04f8
BLAKE2b-256 6223d0044bd4f4be02cdc5f869fe06b314dca0bc6c2eb5c4323bd05aff4a6ea6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8583d07ed7b634f20e5a0139a73ae46b4155572957a5c0bc198997e4b61387fb
MD5 445f547aefd79240d341f141e2cc1c23
BLAKE2b-256 54ba2258a73e55c4dbb23ac26a57bd3a1a81523b42174b847001400e4686df28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f501345cf3c6a8e2a17624670237df41e2c2df825ab50d4b40bf97a2626f889
MD5 5703d5f96d628aaab1f7ca58540e8e38
BLAKE2b-256 032f89ae0d0e1c129d84fb3f305640213c32a383477f37dca31a75e76de8ce9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 146b23b1f85772cf68fcedeb94dfe5be222959fb2bd56550cbfdf231664e0e90
MD5 222fc8a777bc00c2ef3f2d7921b10493
BLAKE2b-256 91d264cd9f5ab11162aa52f44afc2c2dfa4789a3d0aa722ac34208402c1d3033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db8c624b1aab9eb727a4a0e9e431cc1ce97bc6f7e2018e000504811d9b0f746e
MD5 7f868c2ceba941d520023f5428dd0ae4
BLAKE2b-256 c3050217075bcf46c7fd9cec5c5b8d04fdddb929b6e6fa14858dab885f41d0fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3ac64be53737e8c3c813346b3acfbe41646809a10c0608a2525a9d65c4f1891
MD5 9376da2886a08f77a645994cbd6e0915
BLAKE2b-256 a67dee5def94b8d294ac982dd04d0e64ce78e95409f692a4b6e9cfa2c6527e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d141f42a27df7fa007fa55862a8cf5fe375eb7a2d9ca3a5f8478c3b397ba8724
MD5 d984e725ac104d82afaf7e97d3bd2528
BLAKE2b-256 2e6b582ba86a2e9d587c27d6f0c9639622d9a92200192eebd54fc7d0dbd6af52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5b420e40e97814ef9390c277f693ba327e573fdeac2914f4873176ca2ed1c16
MD5 14d50009715fcd1b87066c73a83efa9e
BLAKE2b-256 62079498821696785150a63c050b51ae731ac0ddba10727c684e79f6502110ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 380e0e0d0438dbca4c714dea60c7ddf938c104285b2f0091f13aaddf801da42b
MD5 146a0f08780d25a9c733cf165e11afd2
BLAKE2b-256 d8ae40b1455e3a498fe4ab85c77cb6d9750fa30364544f7e13ba4e69a54318db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e4fbed4a97d5684947923e91e5ae6e5d9aec5ce22297545a34a81ac55fd9c5c1
MD5 0157f4d5425a21ac726e07185256a1cb
BLAKE2b-256 53231617e393f055d381257854ded56d5da9dcb2a4f9841811363b74bbc95f0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bedc9ab87e5e873b7fa448b246f6db94abcc196687ab56c9081848624e9a3d0
MD5 23e94e6b1ee6c72df8e9b4d61c69f0b5
BLAKE2b-256 899afe3b53b916d4e7bee672851be09eafe5ee8b58504e7817ec4c6ab586c8fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.2-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.2-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.2-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 85ffa407854f6123ad8e558bdb1d187616e66f8a6120ded1a8e06661e103f0e1
MD5 040158307f3a61e008cb7da5a8e296e1
BLAKE2b-256 e9f8b8d935f677a79b17404c48ce89a8ee4105cf4ea3c184ec7dccb4d7d6f6d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50ca0270c2334492ecb30c3b822fccd674cca08fbf4f6856072604ef84b596b5
MD5 d9ebde7b70dba6430ba58eb84041b4da
BLAKE2b-256 e5e60352e242b4d4161faab610d3ee9479302999b0476ca7df7e10fbd006bc9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4aa420e550df48b84924ff7362991d544721925d3e7ad9abf5a8b89255cffeb7
MD5 c0152b22c1ab26e3a2958c636812f300
BLAKE2b-256 0d67962e6fd0713df16a6382e05292cd8c6c6bcaaad1d73b91b6708f689b2c36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99b938cb8fb769407dd8b3ab2c44406939efa04dbcdbbffb9da0c73bd27e414f
MD5 a605f2bb0502fc7d46fa9a6b5db97b54
BLAKE2b-256 eeb70635c21c5772884472c4a10e24399218c1ca515cce867e0678b735a8dad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c65d834057563f5455e9cef56846222e8913f110d7c5ad8174658f503c2fa62e
MD5 3049236906d274df2432c13aa3eb9c97
BLAKE2b-256 fe7994e653b5651b573e8e88329cc2156fb649a595c417fc0c7b59d2a93a2588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b375ca7b631534a4d68f7e8c81091b090bd1b1603f0064298f502b1027ae77b4
MD5 65b17deb363ed7bcc94a93b9d8d65963
BLAKE2b-256 b6ee3dd465568689fb5b5a79f351398735d6ad7ae3a57c8279218ca350747d0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fab2784ad71e03d0d7f6f0233bdaec7ac58190d0d64505bc5db7a61fb2b73367
MD5 904dfa5992e1588d0ce4ac82cda4a580
BLAKE2b-256 bc08a0dd33f00999c1656730bed56aae39cd4f2728fa1da448bb3105a7c2accb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc758dbb6f62f7b871f1de759d56d7766ecf226d3d1ffd3f9420b24eb93b0801
MD5 bb131fc31eb05c532c8c10cfa9fc5048
BLAKE2b-256 adb6d99f7fb079022a6449b7ddb26253c0046667b3458a78a95450b44d1d39c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b856d5af046d2bd907264cdc2f32959282bf394b6d2aeec95ff39b5e3118f5f8
MD5 24d77c1b5c130c74280cae05e1ed713f
BLAKE2b-256 493af6a9667de06437ff63e05be32e1b43fd955a08a431a37fe341b07ba492b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac059f44b5b200f2c21846cf38569ce8110d5f75f85192b0d8fda8e4fe6698c7
MD5 175acfbd3684f6b70a7ca76ce19829fb
BLAKE2b-256 6e21d14b809b456c87cf4905501508af0984b0371c193e243c140268852c5567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90c0a00ed0ab24765dab256feefd7670762929d39956341d531bb8501c899672
MD5 5cf892b0c9709537096ab6c7d4b542f1
BLAKE2b-256 d3ee7f7eda8e376f80c1b3ab4b3da1c590a329fdf3d570ffffe1c0259c3fd548

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.2-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.2-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.2-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fe6d46a2460ae55f17e67558472f670f1612f961319243c5d2947866e412952b
MD5 9108b3554381fc87a523a1c3d7544539
BLAKE2b-256 7d66a6bfb65d905848d8f68846f5ac45e64e8b580e9d2eeb9aba008940ebc635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91afc5d652ab8407799474fe9ed2235c623309df361e8653b5026beda48fd199
MD5 3650fc343a9daa6f182e2f6ee157094d
BLAKE2b-256 09027f92582279fffbdeeaef734f6bab4f998b0ba1860dd865db935b9afe9f0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d75332bdcfe7c94bbfb82308bd3c49cdd80e12d5ab439ae06352ae6e868ad4f
MD5 332b64d43a872bba1c9e318daeac4d5b
BLAKE2b-256 93e45886112ba5885f23fe657cb87b90b9013ccdc54be04128279e68b8369cfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d22fd75039b87db6072aeff90fe2d35fb9ad05be26f641e6b8b93558e10ff18f
MD5 854f5eb647614f4e7a2b4d584af3b747
BLAKE2b-256 198925d4760accbe517ed74c7b8b881354eeb9a96573e05b23655d23ddac0a11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d59e70c4d9c3d978ce7b099af5bd971ff5fe267072cf96799742a591da8f6e10
MD5 015f70213df8acbcc736f1965c61ad40
BLAKE2b-256 a633705f68537384dde17a02491bdb605e842ee18b986b2dc0453a9d92fe60f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f406fc88707e52687d9c315cc00ad8ff8fdd864c2c733a41a97e7b75939bab6
MD5 7479b60ed3e96d1d4b7b99c01a4bef46
BLAKE2b-256 b892b06a8d19cc09d87298c25563f26be020ec695503fdf9ca1038a89732e02d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18e16a865724ea4fce63676fe903acb08ab1fea1332a750000185c4ecf4873b6
MD5 90ef43c3b8ac615d042d8735bacfef0b
BLAKE2b-256 58863c045f70bd9d1b203ec9f16aa511de5a7605e6ac2a6de684f7d692217742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 804c5249fb9a401f9cba0316ae5ad35312f7c849066518f605bebc61c49bab35
MD5 fbb8e77fec59b6e9e613dfa1ef4ba4a7
BLAKE2b-256 19e67ec51070f9e995e2763f63872b3ae612b95882a51be78a4e775f6b075482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52c378fa2a150f30dd29d9a3725c6e9788d428ab8ceff515c7b6314ff83d9811
MD5 eb24c75ee2daa946413b3388b0a005dc
BLAKE2b-256 ea884efa300848ec17cd0797a567e3a45511a668654f708d6afa3a815898b31c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0c5bab21a8e6b7f9c145d47c6759c5c33917dbb90b48cca0fd2a40e0941b7e71
MD5 6cf9f716e64a857d2dc920365544d7bf
BLAKE2b-256 1a38db2066569544622ce69da5b3799fe90e2b5071e910762c821602c33764a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5fa5ccf35c1957626f5a27f7e7a067daca65d1ad7f7391de577a6b03ece403a4
MD5 37a02224735352d5daddb953ff234457
BLAKE2b-256 2eb10d58f173492b211c74bfaff95dd60e545a62cab8762e18b485f0b1897075

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.2-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.2-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.2-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0fa01b9f59d27f3e8c5a4f63b426eb214bee98cacd1c4e6fe15d8ea9d2ab38dd
MD5 82c97d65583c000ee30d3e2679d3a177
BLAKE2b-256 728733cf20868b8fb75fc1c9eaaa2ff0ff8cd4beb7e3c15a4ced388d85443c69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81b769a773989b7943a2c3b3b02adba5292b2ea0b3266fae2fa4a78dc3359b93
MD5 3947367ce4f5b45b136220417c541951
BLAKE2b-256 ce6c0e4975174a12863889e451f21059ee52fce6f5c5677d585fe21952ee427b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b277b8a412cb73e84ad3d12b6a675ed707fbb515265042c6c6909c38be932a2
MD5 e3324339cb15fd3167f567ccb0036b4c
BLAKE2b-256 101eb9d8848f14f87ff2bd1b19ddb21948c15879a8a21c20a5e6ad80d2d923d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9e39c200ac0324cab2367a18fedf919f9a5873a3d602c3a0bd12bcaa6c23a05
MD5 dd772ffdf3af89c1b6b000fcb6cdc0c3
BLAKE2b-256 2a7b773729d6dc1f0ed4f0e7be7ddabc9e44441e25b2fc406e9f82aae08a29c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1d0af22e595789cef59388fd0384aeee0004d2ac5a4dec2ebf797ac91367b25
MD5 9670472141a5c1e89070022867b2a170
BLAKE2b-256 260c4f337d5a33ff6d3cc41123c0ad05c7a35e95c0e58cb2e18eedee59c72ded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78a8e99c1c6587244b5504a16becd77235c6c36b81603c72f173a7d538fb0572
MD5 fda918077fbfb316f94c6d2c67afdeb5
BLAKE2b-256 9e7d467fe54d583832eacb4a1762cd418d92ce77d19a41a9eb3bcdf74d008714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14e4e316364da9ece6e55e8ad894cf5c916ceb382ddd7356aef4b110d5f27f50
MD5 cedd6f4a204dbc575a704f813d908156
BLAKE2b-256 dfef6073d19221bbdb5654850202ea2ecd5466451e981b15b14846fa3fb21921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c12af0a4a98563a85afde6b70274593b647875da41297c9e8f0d29a7a963d3c
MD5 a80cc54c41bd7204fb07b124b75bc4aa
BLAKE2b-256 85e7498208db832504eb2beef300dcc51adbd3927f04d19cbe115d4bf3fea898

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67141474c8cae239aade69b8798f590aa5b2dc901b1c3ed042f915faca002f57
MD5 0b30d5e324a92670a4f22e1c259763dd
BLAKE2b-256 0c0b2cff8c3c7e6941a937415dfc0aa973e7672fff578e32ddbc9171c96c7370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4facf935428b2f771357c1c05e60d57364eb028d258c898bef6a01cbce147189
MD5 535f39d29061ebd6f1bebcc8eada8f32
BLAKE2b-256 f0e8813826e4c7d18203f0de79e307975b0304fce4aa6d4113f56fd59d441d0b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6a23ea4a10fbe83e2ba463369dfbc773300c124901b2b9639be1565af253783f
MD5 edcf60f6a3b9434cb200283ce659d11d
BLAKE2b-256 a1be8f4005cf9c79dec0c7562aabfc0ac5ed0c22a1e60fd31c6e1de74921d892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d2bb5cd3ef397f7af826ce4db658571484b5155b9e643da0612a046862db59d
MD5 17828bac8d9ff5b37472649bd860d865
BLAKE2b-256 aa6847b3dac4b09640cae75809db06d610cac83374c7088ddade4a1036faa970

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8cdbf7d9ab9bfff461a1b60556911ca508138917a2a97c11d33876a3a1b628e7
MD5 9d6ee7d98542d2c680fbc4309a865a98
BLAKE2b-256 f112b36efecca572749ae4559eefd5b8af39346d91f942a46417b74e1d64e926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1eda2f638d37c9babe711261e7ad299a947580ce5a466ce4252d446cf9b1dcd
MD5 13012a8688ff0aa85c785135cc631763
BLAKE2b-256 27c952023058190ea52242fc5382ff75b718da0dfb79eacd9b1754f97264402b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd61901b6a4295b92bca0070c50006e7277741d030d1fbec7ead8119416c1169
MD5 6b8bf9fa51a1f4a85ca6441cfc18864f
BLAKE2b-256 69fdede8a0ffdd198c6caae3503b9932955e2f2aaf0052d80356e1301e614732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82241a6136e242b3cba1f56ea5809e29e2fe9403183c2be926a3439d373d58d6
MD5 ec298cc0a7f22edb1dd1212aa86a79d1
BLAKE2b-256 6fce552868527aeb71dde2a34cec1d68ced615a83c6badf1eb31e4b8eba126a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55676ab92f12224d60faa753f3f56f2d243e6588adbc940b1a02b6a3585e6788
MD5 035dbb788e7b4e60f19dc5c701466342
BLAKE2b-256 dac9c5f46442d439641be51ba691363e8f2ad2b6112d84f5322708c648797db8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddb5a823a878b8314f46bc352aac0ecd0a8697fcf01195c545f1a0887ff4d80c
MD5 abbdcc94259bf581ae72dd033cb1db20
BLAKE2b-256 90377433e737d0231821abfcd13877510710f3aa18298b979957c64825e70b39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e2e9e2ff234cf0134c944e3626f5b56dc2ab0289640a2bb1b6e1da352668a210
MD5 d5af85b69945435d815e1f842e8729cc
BLAKE2b-256 c4c3917b586fcba7662938b751898077886f31484bb6c8737187b3889c040cc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2835a231a3738d122e90d3c1754e848bb953b496f2f831714bc4e919d8f203dc
MD5 5cd221012f49f82457719247f38c62a2
BLAKE2b-256 8361848fe9738379280f95b1a32803f979b1a7f3cfa5abd60e43272ea56ffcb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79da0314fd4f10e84f2ee5191cb4300d406ae707e6f6bfa7143a9f3740c6c225
MD5 1cb26a76afb634676ada52a4a2e025f7
BLAKE2b-256 630bf1da11922563c139efa15a89d527b9c84f48d1e990f6e8c4fe9caf342145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 037237415760e07e41815fd5ed389f1e8bdcdbbc2013400e02601d7baa04a0e4
MD5 9f2652f0705da02d69cab1c23332c06a
BLAKE2b-256 a6cd985ce145aa3dc69c24e3dca86397ca5ead153deb19ae0fa5f17d6bc20ecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7543369bee07dbe3f66b942fa5e4f3f3ae07290bb6d46891506070dddffefef
MD5 46a73f984c8c61994027482d028e4e89
BLAKE2b-256 f45769cd365e25e1d429f3046a1f3cd71d4a49efb3958163763cd6f31d3daa07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 259d2992c951236b959d4a696cd2d0df00d4f7c37fda22d1930ea376d5a751f3
MD5 98a93ec348beea6588ca749a5ec8cbd6
BLAKE2b-256 95124cda504ad44014813d365fd18786129a27757d19e4c439bb21351e9ded56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8bc13d4996482f3b1cbaa46cec0e0575ecd74d92cb27834b1b320db76a1716be
MD5 2bc5cd91c166029f9253f70d034dd4ed
BLAKE2b-256 319ba862b1df7293b8b46a38b750ae7f8620d30776dcb7e50dd7fd8b2b51184a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0bfa102819a68cafa6ce34b4971be3923fcde48bec0e523b2e604d5d27946a0
MD5 a62d493d94ad22348e9c7efcd2ec4e85
BLAKE2b-256 2789b59ce4ad9c579ca745f923473651019e6921dc53855206e20202422b140f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1659ca03a5e89b68489697b216e26d5a53c2a4d2369ac7274bedf5599a2b9fad
MD5 de59995bd90803ed57b4f03bc9672310
BLAKE2b-256 7c7cce0b1adecb8f2a9568f58d7c8483c6d4b620592c8a75ece6941246dbcac3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.2-cp38-abi3-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.2-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 7d7743b33bc06793ebdc765d4a023c84d92a44f46e3adf0503f19e7906aeffcf
MD5 9f9ca1c60cf22e4ba02959907223a565
BLAKE2b-256 62c1c15cfc24c8015a4492a605d808b5739486355253e75548aa9a1a9310ed6e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.2-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.2-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 e0829422ec4e2b5385e674b5ee1025855b889db26b29412c8ffe4ea2346ba281
MD5 fd1360db5f6341187a5da3c0b049fa2a
BLAKE2b-256 95319f5fb6c311cbb0256db96522c4044244ecc82fefa83d93e4c65b7cd20a0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70311a39a5d364f86259b4a56496e0e39bd59993850757018998126999238be0
MD5 5a43fcebb9118bd96ffbeafc1f6d23cc
BLAKE2b-256 28a375d2e5b5c67240769ac99ece977c7a6ac93037968987b17460abcfaea813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cb7bc3718bd700cb24ed04e8ecc66a885ef904370758e3671fc20bae9e0b6913
MD5 ccfe14aa78dfc705afd203b4ea6345fa
BLAKE2b-256 ffd5ef01ede8fed93b1fb9ba342e7e51ef0465bc54ed21623f69c5f3f190588d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bae8b8a5ea68a8fe83f26421bb3880ffc0cd0f7ce13373cee6f9d7c74a423948
MD5 8cbf954aa62b80b94471ecad6f3727e2
BLAKE2b-256 8fec22468db79f7279d43ff563960756d22173f2a4c24fc82ce2c20ff979178a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.2-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d3c14877420ea0745568d8a6edd44ecc732d923e5518ccede66cf7da2d52e52
MD5 953585e8f59aef0b99b9fca2df4593e0
BLAKE2b-256 cb89925af5fd79df315f4c3125e46d0834c95dff88a61bea36b73f09f14c3443

See more details on using hashes here.

Provenance

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