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 Commitizen for automated version management and releases.

Making Changes

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

    # Use commitizen for guided commit creation
    just commit
    
    # Or manually follow the 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
    • Automatically bump version in both Cargo.toml and pyproject.toml
    • Generate changelog
    • Create GitHub release
    • Build and publish wheels to PyPI

Manual Release Commands

# Check what version would be bumped (dry run)
just bump --dry-run

# Manually bump version and create changelog
just bump

# Generate changelog only
just changelog

๐Ÿ”ง 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.0.tar.gz (153.8 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.0-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.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

diskcache_rs-0.4.0-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.0-cp314-cp314-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313t-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

diskcache_rs-0.4.0-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.0-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12Windows x86-64

diskcache_rs-0.4.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11Windows x86-64

diskcache_rs-0.4.0-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.0-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

diskcache_rs-0.4.0-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.0-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9Windows x86-64

diskcache_rs-0.4.0-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.0-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.0-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.0-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.0-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.0-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.0-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.0-cp38-cp38-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8+Windows x86-64

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

Uploaded CPython 3.8+Windows x86

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

Uploaded CPython 3.8+macOS 11.0+ ARM64

diskcache_rs-0.4.0-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.0.tar.gz.

File metadata

  • Download URL: diskcache_rs-0.4.0.tar.gz
  • Upload date:
  • Size: 153.8 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.0.tar.gz
Algorithm Hash digest
SHA256 c0615582b263a56802582168afa9ff382f756effaf2614e6d14cc8ca97f24dac
MD5 0ec0a7edd171b3d1e5ad554e53847f6a
BLAKE2b-256 ef5614034ebce05f4f535e213340d1ab10d94094c481e5208b25bba5d5a7bfe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24aceec8b91f0dc2484ccb59ef402eb234524aa50e9a18d5c4014974690adf63
MD5 eb0793d3daa3e589a72fffb2bc8561f8
BLAKE2b-256 62166161ab8575b95a2038c0053ebc922010fc25ab8008420e159f4564747256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 023a630c9025c1ca1b561e847122d18633c2fe4933dc54b2c43c3ec0bd20751d
MD5 c439e36e8ad07a605f692d399b2a664f
BLAKE2b-256 92a8b39ecdf33b996ca934921c118384ad60b1264ba14a42afd043a6bc9bc04e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e9aff372c87393ef1e46b2813c743ff92a12a8b4a74b61777a4aad2e4a59bc9
MD5 2bdb3d20a0b8928947c5f41ae4f2e80f
BLAKE2b-256 f1cdf5e4058f2d7e442c6f9e51626777bf73cfee049478e8349f31889daf7565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c558a9c35c1ef9ba137b165ac6f2214776630cdf1fa0c3a65cc4a39c4cf17f76
MD5 156c21edca680fcbcb481aabb6a6f9e7
BLAKE2b-256 e954869102f9c90d38b1eaccc0628922c8f072040a60c0a8e2569a687b7e07e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e944939eb788c479f7be6f22833757224ada8c1ae15545f8f3ed18d38d21d886
MD5 bc7f367a4d65ccdd9295cbeccdd8a52c
BLAKE2b-256 dced23fab015f44dc87dd0b3ba092e8d5cd15c174d588822f3100bbbdf76ecfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 543960c7c49a8d4944b790c09094beecc2088f463c6df1a508ed22ee472297e0
MD5 c1d70212630fe1351162ad568ef1d08e
BLAKE2b-256 a5c66b2afe4e68ae3b5244ec9b1630960e06cf1d632642e68038280fa6c353ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 434f3eed57f2acd1127d07010fa89dc16c1cc631e808d5ba0d55e882e970e8a9
MD5 1f49d499b58aacd094b9253771322bcf
BLAKE2b-256 fe7a8036445cb3d011c96d7ebf8118659bec5b1ce85ec81ba988368265d43ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a4ed76beebe96d7323c54cf2589c8360e4f679b85c9b1ea43a946c0d826ff509
MD5 4368975f651d1f35b16a241bc8dda47c
BLAKE2b-256 c5a5b017ded2bce3774f79c4ccd84a013a9038df921890acd6930215217f3e74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fba54d0deff8b30db9213bb353c31f34e54a07c988683788a56f14d84e49137f
MD5 affbd796e705249ce002341edec55ff8
BLAKE2b-256 d194fc8f5358c93d5899da0739100a817ef65e37cd7971fa045953d8c45185ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86e897bee0a5d95b0efa3092563c35e9940d475e2f5b0d085e38913243e9b451
MD5 40499bf41e942a6b4514f0e61fa9a632
BLAKE2b-256 1179e26c1ead2e3dedf59489ae96c942ee1c7a209a9067adf62d1e978df7c2be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1e7a417030c1fab4036ccf701c7a77446bb1ecddf63431d305c5ac1d9d94a472
MD5 28912acac8b19201f6b47388ae81591c
BLAKE2b-256 0c411d3c641f9c2eebaddd60e0a556e69029f6ec2faa2fddbcc9fe6970238230

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3edf8b03c19b873493077b8855938b2f88e907ecedb7596c7a15133bf615e7a2
MD5 a998fc864cb2250c2448019ce27c6997
BLAKE2b-256 943413317d648ec451b51a12850e4a10af6c8cf70fdaa5e03643aa8d614df3ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ae10c3e0c5c9555fcda72ea1787a7b555c34a6447a5ba56025ef17a29e93c2a
MD5 91eeec8090aff5d755d6a14f49cea807
BLAKE2b-256 0cf03633c81c4145359a4319595a486745445d7b3e690742109906f7170ac3ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22910f43ff1730709e53e9d27b99e76253f4a2a484ee84f3bf45fae5fd954ee5
MD5 efe4ac165c1a61fa6644f94855ea5dd4
BLAKE2b-256 3414b63148929c65aa6dcb2a3aec79e797ecd93eedb7c4b915327337feaa542b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 50f018779f7bb14ccbce59e6c59a284b85da515facac30b4119c076fd8daf8c5
MD5 058095953814a53891dafc1dd4510268
BLAKE2b-256 f856caf136e81f8f3c7cc47ef6ae7bae64d654feb575e72f6858c1c9f5ae242a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 91c0f6a1c4f84fc80e314b4c416b4e98b2b899f43effaea2d08f3d893f1d1c90
MD5 bd3b66074895c1cfa5a79fa04c813035
BLAKE2b-256 8c8b70a9f01c95284924b0297fa0ced220dbfe046d24d8537cb1015e3fea1d53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 052b68e0e70e0ee4780424cb77c277df0b4fe0b939973a5d50c3cfd1a828e52c
MD5 6e0c8e836cbaff2a8ce62b2371994687
BLAKE2b-256 c6ba3997f2ca571032a8c8a18d254afa5f3dd4c66957822d77fbf9c1d930ee5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa969b24d368824821645bbbd451a671725b67857ccba3903e6e153e4f2f4bf6
MD5 ffccb53c8d3bce2d6105aa05c4d3bfb4
BLAKE2b-256 ba1cc431cfa7254462a5ad16fb36bea2c670a29597bcb22ee478ffd475097549

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfce32a8081c181d8e0c74c4fc598efe5bf5a22baabfa9edcfa22e10042ebf32
MD5 ab2de9be77660937a3fe46beda5583b8
BLAKE2b-256 087c656a6f54a2aaba99355407c0521e51a7a8ac906ef01725f4d2746a9a9fde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74d5f43f3c603e073a9781f791b1a4a57768bd7f9f121ecb732c5f110ac2dc57
MD5 7d8fbe1fd2d18c6bf0020fe422557039
BLAKE2b-256 a4490fd730d874fdbc3fe98f9aeba993c261edc6d1655683087461a1ca871feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f577b714da872d35502063aad20f92f267c9fdcbf31872481ae7cd39db13240
MD5 dae03b951265da54eed303464d623dcc
BLAKE2b-256 5f87f08873859f7653f3317268166c731598906b72e13bfd38c3e8d65ca8807b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8448ed79540c745c0025dd10edf1e717e96cb85e93302e6b6bab1545224b0e3b
MD5 fe125d7bec67cd89826ba487862e6189
BLAKE2b-256 041c468aaf92e8f7561722d9c8bbaaff0e2b8fc1512916da1ae74e2860cb5eec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4694c68c49af098d3509a0e7bf76b16448b68697aa2558ff999c7a4c903fb89f
MD5 b277fe58d0b766bea98ca5a5cd2f9603
BLAKE2b-256 2dd6b3e05f0cdf357b3cc4c6991c992a8d4ea48d61e1728d58659207f3258267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2d647a3bcf05e92c62809927957f1313ec787a63515d03797547f7c19865848f
MD5 df9538f3b9d030a43b86277ef2cf3be4
BLAKE2b-256 ed4b199eb3bffdb278d517c2b110e0fa6c094df0ed90c8251e2fbedaa57f3174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39b9b07f1c9391cf9ae2e98b8355338a81a01d9391fdf7fe6c0347c8a021bb4d
MD5 36318990acca0aa3adccf47f7f00cd71
BLAKE2b-256 553b84f6b7cbf6354ef22bdf60476cf70cfeb4487392d8193dfb957044d5ea24

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.0-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.0-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.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9681f4df46b107027507ac692c0265fbbc6714ebacd02b3f9bfbcb4f053cb330
MD5 9e58ed372621fd5b289e68e7e6641f5a
BLAKE2b-256 eb28e05f9919d61c23ca00cb4b86b05b655be0408980abf4f280f9318e0210f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ab5dce0e68971241c77f7d1919fb201b8fb86a6c42c6f75a6fe635ca76bbb1d
MD5 b73861b64beeb423eda411b5e1fa9984
BLAKE2b-256 f4f214d5d81426f8fedde52125e3df9891b0395d04b442df0e4b9f9b81b2bf0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 009c09bfa5b2b6a9768e7b3ff23fc63defa454245a5985497036ca2ecec8493f
MD5 e9b08d68428bdbff7ce445bb7ac0e574
BLAKE2b-256 733e80b5fd494ac1b46dea6071e727ae2817280f9bbf6736f5d37b41f05b3c4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fad0288cefcd2941fa882ddb54cc6884d8a0afb0cafb3f1edd997b865e32dcf8
MD5 e464fc947c2bd4caa481aa6679e5d4c6
BLAKE2b-256 c29f0144df7aa8109533e5b3a00f4ab4aed8ed7b2e1571aedbfb0ff00b97b393

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c8be14b243a4ac3da4069a34d6daccdba55667645c59abc16fcd038367ddf98
MD5 dc3f5e3f5ab281717b057656e2811c5d
BLAKE2b-256 d87e9ae8515586f942f374e5258644c1ad7f3d7df6f747e7e6a97c6277da828f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c3341fac0d41d74cee046ac24b5a38504f90128b00834ea1c06cbaa38159105
MD5 5a26c885d6ebccf7a5d7c6e95d3d2231
BLAKE2b-256 41443d01d91973e7e590d1c83f9111237becce98d2c9399e8af0084b8f5e0635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9edddce1c5c1ca7c19f017984b690e39df35dee9298691b13d3231fea16b26c5
MD5 8d7c94b5d3ed0ded98785f9058e8d651
BLAKE2b-256 0b6c940dd9a7f6debe41adf49a0476eae3df50b852487085cdc15216890e65ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bb09a965313c1600eb64620a490c48d935db17ceac95cac2ff415af495cfacc7
MD5 f3973d43e998b0e4de21d5e9afc4b9b9
BLAKE2b-256 48f7df143d6ace334fe9334e139f0ad32b943987e7ed6b70d6097c1c349df628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 062337ae37a4af94b0b8ac61bba5333ae987f2eed879e8a3afb8e0c092f81696
MD5 4da7de4e2e287e32598d7f69d437f0b4
BLAKE2b-256 e406536ea0421acc11c04fe29f83ba9a6258ca2b50ad4f7b171ad16d066182db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8397d930cb618fb609724d0f4942f44ff6213fea3261cb238eb27fbda4f7f9e1
MD5 7a2907600b0568d171a3de730531d958
BLAKE2b-256 db81254e6c131015cd9999509be398709ed53e53ff56f9c4dd1f7b049a315d7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ab42feb0605458e627535fa014897c540d74be48f4f9d98a8f1e17718c45e46
MD5 105cceff171c53c9ffb346a192af1e3d
BLAKE2b-256 4372ff271459029e0560dd980859975b67ee8c45c59c2bdd0e06ec6717d7a4ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d6aa45eb336c74d60a8ac9d46ca7fe38a1c2f281354cf0a808901de4b010d07
MD5 8f3e0a995bdad157c34d90e227edd0bb
BLAKE2b-256 e766bdac6252b1b2ab7887da0af9e5d7de1d160cd306c07ce25fd59e4623bb7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2aa4950e3735a14d205a46c06b9ab35fd337a76d695524f8569048c3816423d
MD5 77b09304e96e2b3e08c0d64360f835de
BLAKE2b-256 50d5b6022402fd06526fb3a38bc43574ddbcb58eda65233fd9ac20bdfe0e2777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 706b18a765d0f9877ffd859059e01970e71921c2eea2d24d83254d1d9113a1ce
MD5 1d4ac40cf6b24aabea0a3b1ae704a998
BLAKE2b-256 bd08cc7f87ed2837564b60523659a587556fc629aad3f23af9debff2aff077c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b0b1468178754456cb0c354d4bc92d0487d34523ea9b9bf91f5289de6ec7272
MD5 c82bd24559162bc4e5fc0bc90e1b86f9
BLAKE2b-256 71cb8332e64609626c3140793485299ca8b4f0fa7d75092f2da6cd82afce02bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0ccb106f78927daa5cbada0ac58afe72712d5199c12703f977336a78de351e28
MD5 2459c99fd03e1125f93b224a79c7e3ab
BLAKE2b-256 95cfd6d3a10327cb6801ca1b4ce8590716f0da629bd4d7f7db91d37a95c95976

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d93d3d14df333f756e294b3f1470cb703158d4c4f2a9e3a12eb7b30d4c63b8f6
MD5 d82cd2addb8d2c9ee383b6d1a769e409
BLAKE2b-256 2275d7fb95bab360566568791ecee6584fe32a40c628382a7f21f2a5407cac08

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.0-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.0-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.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 cc0d25445c3242e7380d8c5fd182f0ec291e4ad46eef6f8a3a54c66452b0dba0
MD5 df871129071019516d54bdc552e73816
BLAKE2b-256 27c20971d86a4034d2a7a17fee23426019b080890022ba67fc43bae98652c92d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50ce31f44a8069c7e49702c415fed4c9d1d1911aca375d90cc2bb8143a12f396
MD5 4fcb4631b8a2d0d9e3f61e6acf52996b
BLAKE2b-256 6285ef7f3eed48df7eebf5cae4d076ff8372ae136f050bc63a9be38cf6fa3a47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5569b03e6691092a4d5cd60c308031367982b7e986d169b45db4f811f397f105
MD5 69067fd4e240bb114d1a45869ecfb29f
BLAKE2b-256 bba749d467d9dcc32a22cf35b1e3d151cdb69e4ad667bd5e69d45223c38438f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc7a15ab71d052b94fcaf54f1673f7b36a50fae902e4e718f2f62b830d76b78e
MD5 b7cd8a595d23ee6927b60b423277ff74
BLAKE2b-256 cc6ebbbf54614dc145ceb2f5ca46c90bb66422cabc7668e0c03e5c8b48027ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f175738f49f9579e3d03f9a7850b80af6cb17192b6e272f631b3ef8cfcdd09e5
MD5 ae79188863b67a12eed427739bc8b63c
BLAKE2b-256 4cc3a89f7bf076d804a00a2e57fd8d7e6172117acb1e51332ff395ae33e86ba4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff48ac926e74b42b988f35da4efd9500cdf2f971114dfc19c55c18c2996e0d90
MD5 368f4e32bc3af49f6bdbdc1dbd29e601
BLAKE2b-256 90d752f7a8a4df90c6af295322a50be46e5ef357ce3c1612e1525aa2baa211d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 641c4dc3976c79506a115310b766fef68cd2fe934cc00f5d98b873ad60919fbf
MD5 a81276f7d346bf47b5335f8ef0a72a9f
BLAKE2b-256 5ff643af55385b13b503198642e186026dbf72aa30d1d492e307cd4dd4fbc3bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78b01bba3ca0523f66af067879c38f3ca8e68420c705239507c847b3c4e146a6
MD5 8be8d3f5d13101efd905230e4d01b398
BLAKE2b-256 b4567e839d653f395e92011de6c226c7d73e03409146a299810e3f76cb503f9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66eb78221ab1e7e91187546abb1ae17acda02f220458965cdf1698b7100ebf52
MD5 8f88729966c2632925726f5d920fe85c
BLAKE2b-256 adcc74899b44147a51141aa7b8ec0c88f6e43e716429cdad0649f5f477130211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 56c9c545f4ebc3eda733524ee9868f954676dd3de01ec0de520a72f27f49fbc8
MD5 6b25458b6752bd35a62a4696d6a02049
BLAKE2b-256 88e4224bc1c77971dfd15364a4151ae9cf6388a50cd94a41a7aa0734b894a9b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1b1f82937ab862e0873e38af438288ce3c82f5632abe34682f036abdb811e81
MD5 14f1c6bf3c09de25db2daa1855d58d3e
BLAKE2b-256 5515d6dcd180594dd29eddf1ddb7f683010e4d7194141fff47ca5ac025e4ec82

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.0-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.0-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.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d7750c98ce3a001c8883e0a3a961183ec82141f18638ef5a4aadbd4324555090
MD5 05eab575b69d33c38ba09be7a8810e7a
BLAKE2b-256 bbb56274e8ea127b85bd1cee86f890018c3b2692266f041b1e90334460c089ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1a29832cc6811751d3e88def1ce4023b7d99838b77ad8d52e41767726de1849e
MD5 e36a545894ca935afb046c531063a8b4
BLAKE2b-256 7744d44d12e089b72b145fc58e6b8724a95406f552839ec6c4d2f3e33854db1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9939cc1e53bcacbc966e997bba081f01c2ca191f4caade0428ec0a24304be57
MD5 48336fc41b45a6715179feb7cc2dfa90
BLAKE2b-256 70b4a8d4a7750190a001db0e34d0a54a5f618c6668c0da5f35c2425d1d38f1fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b162d5eeb0bd82ccc3d5b3a788df6f0da2f3d33c964ce432d944f4bd62f4fdf
MD5 d8f4f7be40e1e0346a5ee3df23881600
BLAKE2b-256 b29cf46ec7d809035b3de66d8a3d2b992e1047d84f9dcdc64bf33eddce1ef472

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0dc2728ca1a00b371d259dc83e2094a2b628f47c503a73fe70187cba6b4e84c0
MD5 245279f8b45624a18039de3a304cf0e7
BLAKE2b-256 e38f6d6774e6c2795e0fd88b165e4aeafded307385825e03eb29f7f9941659dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8928aaaf6992b68b9614f80baff923602ec21e036675c8eaa66154f6d6f0d4e
MD5 bbbe77f3371678e3b6628e8908e9e1ad
BLAKE2b-256 48be6f671cc9ee7e86b9c46a45d420ed3cf227c75edea1207dcf53522e378e32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2115886114343806c67527e253a76ed5f04f6b68d1be2311a546887f3176bef2
MD5 f01afe0f0d75240e67d7a8be7d71631a
BLAKE2b-256 ea41407cb96f4d675c978977bcbc5f6d885505392be17185017faab31259e886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c05d2d1756581efd0595fcc9a3d46f39a3f88a5c88aed44179a8f4738e88a065
MD5 8eec33c779fbad6ce97df2c186f39d73
BLAKE2b-256 e43dc53fe0281886f1abfeb1c186909912c0b676b37270195b70bc2e83b8d51e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bf593b1c645cf474843f8a8ef120fa0ece226afaa5e685184eb00f3c5734df2
MD5 dc27fccb391981d1873245dfd1850e0f
BLAKE2b-256 3504a4de89a5704bdf0854e693817fd56584637b832193d6d820255828a09d1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 97d30720df7b4c87d37704aaf89421f086980fa87108d684a2c6d77cddbf1cd5
MD5 5ff27ccbff9491513b6f9e8bb41ac3f8
BLAKE2b-256 70994f0dd3f3bc0c98f3f1e255c0044038d5638938a554cb52da035718b48c9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61a97dd812d31d84a254ac3fb9eec61e963c94fdc168cc9cf516378179a36496
MD5 6a46152426bac40726de5082afb54362
BLAKE2b-256 be89844c81c45b929bb01d0f56c68a10d4aec9d0ce763034ba03d23069e90276

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.0-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.0-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.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0f2b5d0ce8b0ddd750b1204585cc9e3af13b4df4dcf95524ac2e54ab2736cb48
MD5 f80a93e3c0f6ef1e03e2a92910de464e
BLAKE2b-256 52f8a05103095fd2e84e0e890e1914c97d75f7fd5ca83a3cb2f7afb653265f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5bec78a77ddf44df8b26b14ff90aeb3b27a9367766774c763a2958164b7b3461
MD5 c2a1604a42587f7a0b184a363224cfae
BLAKE2b-256 23a19930d7205e05ddaf7462452ff89f771d13464cf1c8251d2e0855191e4387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3f0456bc6ab4ad88dde53307b3dacad231766e17600b852b2047e001097c48a
MD5 d328cfab910191b7674a48fe1f27c5ac
BLAKE2b-256 7aa075ae430fd892af83fc613712ed48db835e28e7d5aeb36be9668050d048e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba71d4dd66236f905c72bfda08fc0d8b48867a2d3b776d8250bdd1fe59a9e585
MD5 767c0e15719ac5b869eb4e015c2bb675
BLAKE2b-256 6e47137961530f6ed9c759ea00b316de18eb1c0100c57650b17572a248a7308e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 282616e403b1023087c743bbc67a24254a020d355b57f64d3a64907a641288d6
MD5 4cf633d355d58a1502efdd997009dfa4
BLAKE2b-256 0c67408070194baae8c402df56f17c5d59d11e67fbc45d37c21d0baaf97d4be8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f0b41bbf2febb215e874656782d5c50ae9e2005e4d9b8e60cccbf161872d428
MD5 7ab8c394f8e9676be25f77b32fe5fa26
BLAKE2b-256 684cd57c65705b9ec79742e081807d4fc3eba02a5a8707732f46aa04c2535f3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c434254086ef7588b256b40cac6787c8fbd685f7cd992dae284c5b119d2e534
MD5 25d9a6cb47d88e28b58c5614782ee071
BLAKE2b-256 1a867e8566d32d02a0b7ca496d4f1a175eef8143aaa897021a58512c4188357d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93c1ea6a316b34efb70cc37416d350ba6f1f716af5f642f619d960c5cc1a4247
MD5 75b79f25877dd11fd3b482419ca95b24
BLAKE2b-256 f6c67ce985a279a79e251946af39f57414050ca7a60c305c0e872b491f074b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7928ef9cc41d91d25331e314dc8b0c9187d12bfa8b162f8dbc94e6b861308313
MD5 29bc5e07dcb6f9648109922652f5a7c8
BLAKE2b-256 a3e99b9f9d75758a2c0807efb5d32f9d89a68f1fcb26e3b5f8e0139cffa3948e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dda507ce083b70e866bf3a36ae85bbc4b94fa4edfac17fdf568667c177e40bc5
MD5 52ad2510d8bdad5f166de75aba2b27c4
BLAKE2b-256 149c9f7b1daf335303991d9c0b01619fc73089bb7161fe6a9b70da864bb0e8a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 916a79b6190eb6d33ced4dc1e7005abe1fd49e6c7a6d423a30b50c8129c5e624
MD5 bbc07c71975d1e214e8d8dd82ca06dfe
BLAKE2b-256 8dde7a495a63dd4f1a210d2d007f57f6c97fadb884534dcfc953ab1076e426a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aeabfdaf49706d831e080d084cf952c10de6e051509919e1c7db97aa6cccff95
MD5 4ca4b796a01f2d49a582fea86eb62b09
BLAKE2b-256 45377f809ab6aea906e61da8531b982f46c06e364af0c8d04768f3c7c5220bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aed170dcadb21f3be68ee161d8a4e524d8303379eb3b16713e71e325bcc17ff0
MD5 4a0518c6cc71cdad83e7d5b68166b90c
BLAKE2b-256 3a85ef6636ddc0652172e45e587342a769429136f5a10c070aaae687a6902ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e49b785265c4b28456fa52aee1f212b2eeb5798cb42a5390fdba365eeb378ce7
MD5 59333a9669777d2ac9b86a72449afc29
BLAKE2b-256 87ffc7c45ab6692f8c163585bf74442ec5bd14a1821f3970b041a547bd7804aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b72dcef3fea0b3e762b9fff05f968fa92ff56d93de22ba396b415303333581d
MD5 9de27e3f044890d589f48b58fe2267ce
BLAKE2b-256 ad8412e721685d7d1705357a080274c1b84d9a7846a168deff2917391374c2c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6da100c635dcec083a59be7490dd4ccb306f00d646b762bb92250b580deb0dd2
MD5 03423ecb183ad8045c57692acc87c028
BLAKE2b-256 8d5212a7e8bed0df048b06b954575f59856312f3f8840d40b8ea75ee6b4dc027

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c64be084ca9c46a1fc826dca064b9d0b3412a2e909d97e5f9e11b380ae585d5
MD5 8a5bf791b120526413b922c77b57182e
BLAKE2b-256 80a8715f71a8acf8ecc02eb8922a5257e74349173aebcf944b1b8ab2620a73a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc9a180b6c7d61f4ea05411dcf5198c48addf09d45e99ad33c35b89c9e0f7b81
MD5 a501c785ac9c0e86cd0d2d576c4e12f8
BLAKE2b-256 1154a48e1b40b9b152db815c3a5e72d5ccba9817a19903e25b33372d4ed661d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4882c01297119e9cb0102d2ef7394e9f935bfb56feb7b5879545c08aaafce99d
MD5 314b1ec3f086617bb18962692b9f503a
BLAKE2b-256 470ad139e699cb1f2d0a9d2cd398712812905eb0377c57bfc3b38730ad31a0f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acca00ab1ebd277b159ec86d7bc2afc3ae71f8b962d5f843270eafef1cadc078
MD5 0352efc79773051c34f653880240fcdd
BLAKE2b-256 73635b79fc81b85f426c473685324217b55489d6c4fa6aafb9ae0a197c049d40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f434c66c5634ecab836fef9b07b446f7c63b5c6f45fa128c26f243f281a16849
MD5 1dc629aaa7385c4a3388a1d376d22499
BLAKE2b-256 42fddb9b94b3abd98cd9896b2a85604bd7cf080f23be04d722925d55c3b24f4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d6adad23f919bbd8144f4deaea2382a026626198e8d4a421835c2c6f126efa24
MD5 3b707d644785c7195ffe5705b5787a27
BLAKE2b-256 50d9a25a988ae43ed790632f6f55cfee2305be5641c936864d99b24c86a95ce7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 149397c40b531809030e9453750c6dcb9e2c3d0daaf21a21e333903842151f90
MD5 021af5f4bc043aaed46d0a5c8251b308
BLAKE2b-256 04b788ee8d39fa204e1d8a1fb655c04ff2a6e4e1402ce52d8c07f22808f14f08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54d2df27dd8ce7837c3c276afb9353ccff22014e516e990866d3f8b6fd1c8597
MD5 419011eb2ceb52b3bc30a69d4566684b
BLAKE2b-256 fa6dd2ae09b45d9dbdd718160651fa0b4fb39eac9fca8c0b34a4acf38f7f10cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8989b71f348c2014846a203548625d167ee07c673dec876bf1969f230dffa6fb
MD5 64f69d4bf060cedcb9e9f7d3ddc9f1c2
BLAKE2b-256 8ae21ff40b3b635fa8dfb5c322936b8554c1c771fe106b67c3d97353fa95cc35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b7fa5053000d90f4a41cf780021e258477ba5faeede34d092d5bdc4bef602e8
MD5 d8c4e1e53a69ac3ddd409610b5c98ad2
BLAKE2b-256 5a10c24c7136d98743d52b7a28a06ae884c897e28e9b138804be358f2e4af538

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d260da9b9f4a9ad3b15ae23efda20d6085242b063a20471ac499380b429644fe
MD5 966d276096c9b25ee78d77f81d23eb35
BLAKE2b-256 8266f444dc5706671ab19b8b034f43b7075580a95888068fccf69d1aafeda2f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.0-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.0-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 af490f62b62953730f57e593f1b0d246c974687b9e79e120c2ffadd13cef330b
MD5 0ee328e9b2aa0e5570521b2942341e38
BLAKE2b-256 1d6bfb1ccf7b24754d7659ed104f4f7af3b58f5f323f0cef1b6352755df0f64e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.0-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.0-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 a7ac6cedb980a249df4d057e4a2334600bb1e63dc67638aedfa0731dc44da8a0
MD5 23ab49908abcbfab9095ea19b2b5a4a8
BLAKE2b-256 9a5bc51200078340a35acff65f4e57bf5c564df3e674ea33e0a8ae8ec144124c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ed1040725b85a8baca4a03f6932571792c24f6d5a9accd476291d7f8b581202
MD5 99a52c5fe7b7bf485528ba2c1a58dc6b
BLAKE2b-256 f7437e79f2e85d2787943083bb75e970d6de25d6f07f702d08b94b6354715329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8820cbb4decf01e2e7d8c4106e69e938c0d4b1bbfb2a381af1a0c470d4da85f0
MD5 c924cc3a0e7b1b11e772fff73d139dc2
BLAKE2b-256 0a953036b005435a92007089168094485f9a28b0922b4771471d91915b5da03f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e83b281c0466a633a4ed3bafec48b70f92a10dc975e9d47bf64b169a2666cde3
MD5 6aaa7d2cee3a7cbb18f2e82e2d677ef2
BLAKE2b-256 34d4540faf0f29e2856602d94abb30b5e90daf5e8c8d09114622699ac5e29770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.0-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4563f157c058027f76f421b878bfb56d1c5a299404b70935c41ed0e78305471
MD5 600882de6e250e92870c08d27cd5b0cc
BLAKE2b-256 62a2fa23cc273f0d83b0420c25cdee50273f9983915dbc2b5759921fb4675d71

See more details on using hashes here.

Provenance

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