Skip to main content

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

Project description

DiskCache RS

PyPI version PyPI downloads Python versions License Rust CI codecov Documentation

English Documentation

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

๐Ÿ“Š Performance Results

diskcache_rs consistently outperforms python-diskcache across all operations:

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

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

๐Ÿš€ Features

๐ŸŒŸ Core Advantages

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

๐ŸŽ›๏ธ Storage Backends

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

๐Ÿ›ก๏ธ Reliability

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

๐ŸŽฏ Problem Solved

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

๐Ÿš€ Quick Start

pip install diskcache-rs
from diskcache_rs import Cache

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

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

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

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

# Delete
del cache['key']

๐Ÿ“ฆ Installation

From PyPI (Recommended)

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

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

Wheel Types

diskcache_rs provides two types of wheels:

  1. Standard Wheels (default)

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

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

Prerequisites (Building from Source)

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

Build from Source

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

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

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

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

Development Commands

# Setup development environment
just dev

# Build standard wheels
just release

# Build ABI3 wheels
just release-abi3

# Available commands
just --list

Release Process

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

Making Changes

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

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

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

๐Ÿ”ง Usage Examples

Basic Cache Operations

from diskcache_rs import Cache

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

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

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

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

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

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

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

# Clear everything
cache.clear()

Advanced Features

from diskcache_rs import Cache, FanoutCache

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

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

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

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

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

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

High-Performance Scenarios

from diskcache_rs import FastCache

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

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

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

Network Filesystem Support

from diskcache_rs import Cache

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

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

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

Django Integration

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

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

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

Performance Comparison

import time
import diskcache
from diskcache_rs import Cache

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

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

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

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

Python-Compatible API

For drop-in compatibility with python-diskcache:

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

from diskcache_rs import Cache, FanoutCache

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

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

Network Filesystem Usage

Perfect for cloud drives and network storage:

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

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

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

๐Ÿ—๏ธ Architecture

Core Components

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

Network Filesystem Optimizations

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

๐Ÿ“‹ Feature Comparison

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

๐Ÿ“Š Performance

Benchmarks on cloud drive (Z: drive):

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

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

๐Ÿงช Testing

The project includes comprehensive tests for network filesystem compatibility:

# Basic functionality test
uv run python simple_test.py

# Network filesystem specific tests
uv run python test_network_fs.py

# Comparison with original diskcache
uv run python test_detailed_comparison.py

# Extreme conditions testing
uv run python test_extreme_conditions.py

Test Results on Cloud Drive

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

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

๐Ÿ”ง Configuration

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

Advanced Configuration (Rust API)

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

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

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

๐Ÿ“š API Reference

Cache Class

The main cache interface, compatible with python-diskcache:

from diskcache_rs import Cache

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

Methods:

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

FanoutCache Class

Sharded cache for better concurrent performance:

from diskcache_rs import FanoutCache

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

Same API as Cache, but with better concurrent performance.

FastCache Class

Memory-only cache for maximum speed:

from diskcache_rs import FastCache

cache = FastCache(max_size=1000)

Methods:

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

๏ฟฝ Testing

Running Tests

# Run all tests
uv run --group test pytest

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

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

Docker Network Testing

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

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

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

The Docker tests simulate:

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

Cross-Platform Network Testing

The test suite automatically detects and tests available network paths:

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

๏ฟฝ๐Ÿค Contributing

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

๐Ÿ“„ License

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

๐Ÿ™ Acknowledgments

๐Ÿ“š Related Projects

๐Ÿค Contributing

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

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

Development Setup

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

# One-command setup
just dev

# Available commands
just --list

Running Tests

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

๐Ÿ“„ License

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

๐Ÿ™ Acknowledgments

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

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

Project details


Download files

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

Source Distribution

diskcache_rs-0.4.8.tar.gz (205.2 kB view details)

Uploaded Source

Built Distributions

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

diskcache_rs-0.4.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

diskcache_rs-0.4.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-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.8-cp314-cp314t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

diskcache_rs-0.4.8-cp314-cp314t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-cp314-cp314t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-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.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

diskcache_rs-0.4.8-cp314-cp314-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-cp314-cp314-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-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.8-cp314-cp314-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

diskcache_rs-0.4.8-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.8-cp313-cp313t-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

diskcache_rs-0.4.8-cp313-cp313t-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-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.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

diskcache_rs-0.4.8-cp313-cp313-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-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.8-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.8-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.8-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

diskcache_rs-0.4.8-cp312-cp312-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-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.8-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

diskcache_rs-0.4.8-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.8-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

diskcache_rs-0.4.8-cp311-cp311-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-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.8-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.8-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.8-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

diskcache_rs-0.4.8-cp310-cp310-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-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.8-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

diskcache_rs-0.4.8-cp39-cp39-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-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.8-cp38-cp38-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

diskcache_rs-0.4.8-cp38-cp38-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.4.8-cp38-cp38-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

diskcache_rs-0.4.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.8-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.8-cp38-abi3-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8+Windows x86-64

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

Uploaded CPython 3.8+Windows x86

diskcache_rs-0.4.8-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

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

diskcache_rs-0.4.8-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.8-cp38-abi3-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

diskcache_rs-0.4.8-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.8.tar.gz.

File metadata

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

File hashes

Hashes for diskcache_rs-0.4.8.tar.gz
Algorithm Hash digest
SHA256 009afd30991d288b57236c54ca43e7a77d12789e1a9585c212256bd1ae50752e
MD5 afd1edfcabb3176e2ba675175c0a0f39
BLAKE2b-256 cbd5fabbcab8f1b95f353382c4c1ab2a44c7f4a597a7c9d3e1432132fb36863d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a367ecc876583e53f922dd3ccc60d724aa60a6abb4752d4c6cf2cb2aefa195eb
MD5 ac7eea5a133a54d92f98cb26d5d84cc4
BLAKE2b-256 8b4ab27b7e61658e7af266d366b8e93cbc1e8833943e7cf6e2518a45b13e7afd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcce6a7617dd94519b7da71bf3332c69e6c9f2fa46b0dbca7b7229ea0ba85dfe
MD5 12bd20fe8873e513cd1c61ef54742852
BLAKE2b-256 23aceb41aee89df4e6240350749b39a4013ef6d2bb6558a8da5faf3d17c2807b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a28ab8cd87b98bdf6a894b66489503720759703527f1ffe7fb89b050302fc705
MD5 93907be94cf39932ac82f5ebaff8f1e6
BLAKE2b-256 6dde7f9af0865b87d6ec13dbde13a8e0ccabdb9a4ce35ce7b3d10b2c9cc92409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eaa24793d866968c57b09840c6f11a9b3838af0b759cf713a154ef36d6747138
MD5 2089c741e8d8ba3fcca3552804b595be
BLAKE2b-256 f718a555aad3b4ba6573d470b3d5dc27af50ba7192aad0881f02c05452a1284a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7a7f0d9ef8d07569ff0978a37193147fe8da23ec722247892f544f44bde37ae
MD5 3bbb4bdb0100fed718a493d72f2cbdcb
BLAKE2b-256 9988beedad35777d65eb0f8aa5e6c927b190ef9b8b1ea3b49490d1c1c412adce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 366707c2ac7af3970030df6bc4e888605e41486a0e6a0886290adad6becc2f45
MD5 5feb387526171177759f2e7fdaf8a7c4
BLAKE2b-256 ff9facec9cdbcf71fb79d13b88788c430f3c62d8552b9fa8a7f0230c82c1ab3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3072bc6b152a5326d206539f3247cb89cd43928f9da1444f3111009d91fef99b
MD5 6dccbbf696426f92ae9c59bbf574faa3
BLAKE2b-256 2dca7d6e86b2914a03063162ea6c9b1c6fce4a065698787b0c4bf36bea10b100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e4c9d096ecf02e44b32e762682134552bbcc2995ed294ef90be57ca3fc5404b8
MD5 5a0afe030c0ac1c7b732fb547c45dbdd
BLAKE2b-256 4a6d2eaef2cc66c0beb8f3e5fcc6f1b4dec32b6d59f6572dcce63cce7ee31bf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ecf7430d41ff87f492bc6ea9244a36c9173a6ab77bc8a13a8c7241f093def06
MD5 e795c4a7e1fb928415be32543c0fd0fb
BLAKE2b-256 5d14552dfe20bbd44db294204fe76c729d27fe923786eac97b1cb16789315c29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5312a74449e2d50f3cdf4d67dd1dddd4bd88d5773815604b4863596eafc036b5
MD5 32335f649ec4f93b65d4c0428a72c91c
BLAKE2b-256 def6275d01bd0632b97a6a5e2ce0f403f2f2a474a7424ca7ff98e603234e29d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25be9ec9e14f7b6c33d37dbc035e4ade35fd4155a5731b490b1d9ce2a3f92960
MD5 02c88ce655b0668d942c2b4daf3325d9
BLAKE2b-256 08409b50439018a4aef3fb69b31dbc2e32f5db26fcdd2e858597a36613fa3ba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad34c88d4f63b1079db6cb3ed01fa0426951d5ba714b1e800eee8dfb82379301
MD5 5445630e007a18d04bd82104ba8a65be
BLAKE2b-256 40bfbb3fce186bc418e89b9d9203b832ba99e489931a26dcfe3c015770ae703e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 951be34d35ff01a5d2606494a8b4f53378e698cc6ca03b87f02278c8b8f79684
MD5 ecb2b65eb5f97c550102e7196e461667
BLAKE2b-256 02b84bb6a6c42fb3407cfb37f12c5f4dd1f522b8f3d1c0c21c651314d4cbf206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21c1d32e3939fff30870525d4d30f5071866e6298932d5851fb8683bee8851e7
MD5 7684dab94c07c24fc728cb4b7b619828
BLAKE2b-256 5b9ec715f4a0392c09bc0c1a0fad72635ba8a5e0a9c316a3aba6a37c992bd875

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cd510564803e63e59ded4849af0556810c1f9c851079d3f18343a7f9c5b6e160
MD5 77250bef7958bb510fcc63d69bac4281
BLAKE2b-256 acc253bd17b343bba39b9cd394cfc55a3210151392de8031f3f3c3a60138aee4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.8-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.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f61bb7280747d6eb7e62780301abcb270311e9534e7d4ddf9ce6a2b69b2decc2
MD5 72a34541e040b56466488933a494679a
BLAKE2b-256 8c529f42d13c1f23024a6f86ff2be83a7ff2ab65c324fe55bfabb5ea12cc2e3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 200de486d2f7753049ec58681b1dd7b140ce1251704c148a862ec917d01d36a0
MD5 75214e0df5bbf72f66f5baeb1b48635b
BLAKE2b-256 00be1acd2f9bca225d61f90ef11849e97e20cc21092b4b408e2f6b39090c7666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf3172b6c3508ad2a26a8658296b19c81b598e655ce673ff77c08581a485f928
MD5 b0a95cc6784b1371e1cd3dd156821e7d
BLAKE2b-256 b7684d902193b9a610485b0cbd2b5cef25589fe1461a47ed29f8760729d27f6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4bfee72230c79342e60ad421c9c71ebf1b04329d43fb160c1bde0ed1d50b5b0
MD5 dda13b0205eb1d39ff03af3b07ad6ec9
BLAKE2b-256 b958218f35b9e98006aaeb59369caa0d9b1518817073752c30853e1eaf735c59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3710ce090cce203a365de3171ba67c59102d1f47edbaeb641cd6261851e146ac
MD5 ab4977c49a5a5edf21e4dc05ee1ce3df
BLAKE2b-256 289d62a419c2be0126bc537ebcd677d3d62e11ae334abc7e8008f050838780a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28d1bdf493c623f787190db7c1dd5373c13abd3a81129a45033156a406dcf97e
MD5 d80b7c30435ba605830f1b79a5e3bf70
BLAKE2b-256 1c77f9fdfe07e0f77e476c3dd71b00ee68d4b19aac7869909c2adf1ca97a3b5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6eb61b296c10b808a8e48e525a05be0c07de12edeb023c6f118e0c4486e60176
MD5 5ad1e38930aebdf3650cff273d8316c1
BLAKE2b-256 b7ffb7d041bd422fa670be87d0104c64fe152944eca53ccbc1d52524955d3f32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 438a1a5ac7dc3c26d927925287509fa54c9f0e49a8efc89dfa15bbff317c32d6
MD5 156fcb4d02a0c541ec9d16100b472ff7
BLAKE2b-256 4ede6ad094ebe0efc2d9502c4cd6b1ad59388bcf1cc63ab0c3b4e802b37dc62c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f52e60fd0724360f627f513d8f1f49f2b64c195f2162775f8fdbd3f6bc95b88d
MD5 9b9aec4c86e4de90b641b67a5703cbd4
BLAKE2b-256 0da2584d65ca4e42ab1bcdde76e29a54762f33d5cd2da0b5df64c09e0e6984ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 760e9a212bf0c586e46c1a40f28c15f449786902cc82dbf575d222b760134ff1
MD5 95183244773795a49a41ce4b40275f4b
BLAKE2b-256 a5ef60ae13d71318b7058ae565edb4b79b3ae180647b660e882468ae7cf16946

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.8-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.8-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.8-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9e36ff45ebaffad56fd280091f314a56d221765909cb4887a214a0c6c57b5bfb
MD5 efc11b83ecfed94ae2a10c64d061a773
BLAKE2b-256 92a73610c657b83fb36d54a3d59ffb412a950ba9e8e00e425c95c4ddd3397382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 771fceb2bf4a76ac0cf4e06a09fa7f3970063cc4ecc10f684d555244f66dffc7
MD5 761ab447610f223b245b8889dbaf6b9c
BLAKE2b-256 85f9ed32a3cc94680540ebb7bd26f03595cbf7c9fb22ef1f00a543e5f0acbc79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 694f71b5d64ace0c06b063176794ccf4b2aa0e8d2c26ce55bc15a318c3ddc758
MD5 fe7d36268ec63b7b55c973f2170a90a9
BLAKE2b-256 42308ac187ccb3dd260853e98bc92ac8d416fefbd18fbcae8da8a65f076ca5f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 99b8c5bb323c1deabc54a537a8052caf21306dbbf5cd57329f327ec094b18e76
MD5 e4302a3570e2a28f9c445458f9ba0ee1
BLAKE2b-256 8373af351b75195e0f1a70322defb9fd05df37e621f6511521aae43523911535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ec423c1241031a9a7958d73fb2f1cf8e47154264f209ed3c56d52cf69a067d6
MD5 9590d5cb01f910779bc45df90c0c278d
BLAKE2b-256 858dc3c8a884d2885a9d1b627b0ded565444498c74102ea0043ed42f4ae4b924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9dfbfa6965f5c45319f1b2840dc57a2fac219f7050abadfdd87ffe6ecdb9002
MD5 60b5db65606f5cbeac567c48c058113b
BLAKE2b-256 1061c6c2ce98a545883dc87d75082ec0036bf987326ad11db8c9beffbb39a575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d584342c5ed3290f80f3fe21b3b9a7399e64a4e2dfdb84327ff4c99920b4faf
MD5 5fad99894f73039e27083863e1a531bc
BLAKE2b-256 ef2457ac6a36355322de49340fbe4947d68678b2b70358f98f7df62301b4e240

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 274a0107146ef50fc43eb4037a4bfe8db6b740082e3bfe38f19cb2a33bf66cce
MD5 979bd3b3ec98392fc4a91f3eff9ab95d
BLAKE2b-256 bcd6f8e4adfbec6e429714ca115920eba7d816d5b0b52e0c7a010edd7dad6025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10917b8a489284575635647c914ee41f34e19ce37d4bc21c16807f090efb400b
MD5 fbf3150f5a6eb41279dfee96165be1b6
BLAKE2b-256 f138fd09782a2379eca2a4ebc107f4b224fdb0404e4a5232ce5788cbd7c63eda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0439f01dc8c452ac424a5bba164e28a12260bdc28a68cf0fde17542179a62ab6
MD5 4da33cb6bb9767e8b638a2ce30fa2d64
BLAKE2b-256 b780430f2be38bf18fbaf3aa1b8f0acae41c4d6e7cdd6aa2cebfe2d549c2cbb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d724b24dba1334c0cff6af5df865369ab0ec534270e0927ebeb6d3ea30b0be5
MD5 34b17b14716b2a53c175d0ac03334a75
BLAKE2b-256 0899a072f12303547d52d4f5a7331e1ac2a5d26cb32887fc1d3a4ac17c08df39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a65da7efb14760b5e94754fc7356713d931f1ef1f2e0274c9ab5c02c7f03954f
MD5 81bd1c27387b0a25973b495c8661ab28
BLAKE2b-256 99fddb765c94e877b9fb8486c45f736a2fc53c406566eb05a2fe1589a0b96658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15976d498b07d0a0441dd11bad88a6e197982e7fcbe4b6f5f5ade45d670141c2
MD5 8fa04069203faa337c6a097fa83283db
BLAKE2b-256 85987f4426071e412d01522efe680b804d2db96f42b99be193255ccc656b0be8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6e56be1812191fd0f68d5220cd86dfa6a2a9aa9faded6df727f5c8ccd3bdcf10
MD5 89818117a73e3e7dfbb1b31acb618b7d
BLAKE2b-256 ef9c8573ca01c04b47003e63ab726251235882d6bae66fc8ab2d09b49145269b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cacc512d0d7be3b01df59757f33ad2c55e250902615402eed0af21d48b0ed55e
MD5 9caeb932bbbd1a3d46fe9ca739293dff
BLAKE2b-256 e771af19b90bd5a50c0547847fa57a093ce69c3a5752d72f943924a02115b029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f75857fd7196ddbc708b256a0d7aabe69f16c8b9907fa018e4c94e9cf24b7961
MD5 57a8ac6784498d271f1077ee5682d47e
BLAKE2b-256 2fd38381dd504b3adaa3764f689f1feeee113b8bd6a958d4ac19f13b9732b4a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66590acce0c22ce90bfd94f80c383c82ffc5e0e33d33bbb1da0f38e289fbe580
MD5 529067d1dd124d33bb01b17f30ef82ea
BLAKE2b-256 3d7141279c7647831723bf99194b4138722070c058a46e1a86366d6950b0f55a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.8-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.8-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.8-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ef0f72443bc3f492bec5463cb2dc66658c148f07fd0e0db4768692b8fc77d20d
MD5 3bab1f1882c9e90db50f0836a8b8ea16
BLAKE2b-256 838b44a51c972a76ed9829cb59893712bf8c952df9b103ec7560bce4e8ac75ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c2c8c7b0e120af4ebc115bd6f9d71be442e70d159b05c024d8b161787af8d718
MD5 3a70e0ee9e1b0723ddc8d67ced14397c
BLAKE2b-256 24eec8c908545e5ec7f4ec71aadacca04126b305279cf82d995050b8639fa4b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68161f872e924dd49207de17bedb0d5ce4f651c6f9138cd1fbb6877a4a10414a
MD5 1179de44fa6c5307043f4139f2d295b1
BLAKE2b-256 19f0a5332e66856cf0da2f6722217090e37af9c4e6b068a67e301115e4b01748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45eb215d907bdcf115f5b35a19be98cc4b662fb4fe33355e632f32761f151fe7
MD5 abf43eac1e1ba2b54219b3666838a6a7
BLAKE2b-256 b3d8b358ee631dfa090c0f273c0449b231de33d7c43136d085d5b16518120ba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8760e3d293481cf573c5d6d0126b790822994fb3147bf8494d9b436aab5400dd
MD5 255315f09913e3fd217c3595de21ba60
BLAKE2b-256 300b836d3e2a7f72132592d869a54d73a0786d287f0097f18d67e22335fceb9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ef76acb9687b31a1066d5c0c201a1f243b8b7d0bfd895296c58cd53f915c07d
MD5 3374bbda3f0227e323ca6db0b81d7a07
BLAKE2b-256 3ddaa242d3993ed34a5f12603ddfb9ce09aca21df8d9b19e7c7cad054b5ff5b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ba23cd0706a5f63354e4d0f97bc8166ee064360fa6c1339c0e75fbbdd9aaa7e
MD5 81ecc2d5937e28a5e096c4c89d4b5409
BLAKE2b-256 f775062b26fa6aeb157cf1da5bf212041b3e3c68e4587d124d39aaa289402cc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b9c6925505f78be2b33e93372bbf3735a650cfc259e86701f459c9211fbaab6
MD5 9afe4f92883ab9701392823544c5e509
BLAKE2b-256 854edf3d2b9140ac765388841341cb43402d3a1525d9a56967b9ee01e4e8c10f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26b3d3b42a32bb77d871c1eed58f245b0c0fd137427899c95144c8b6bd49e853
MD5 623f0bd7d3968a9fe5c1538647a40266
BLAKE2b-256 f243519caafd6a7160c8c7bd32d878b2ff17157cfa294bb8e86deb94559fcc7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 38671a4f4f8396ef0d76d57910157586ec1ef5b09fd65eb61727f0f093fc34f6
MD5 e651da1e38ec362f267bf79756e21bd5
BLAKE2b-256 46749e5616677b902f48436d8c1e2f1405c351a5565b04be9e407d23cd614bc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94566dc13019258986a0657e6847ce446b9af4052662c1e3294ea1cfc95c7e99
MD5 638bd5cbf209a7e5499bb76811ce8963
BLAKE2b-256 12adf815041807f81977aa6593cdbd793835be925b7e93579906b9076f290e00

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.8-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.8-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.8-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 18ccf7e6feac783176d0b764b1429c27ca0b09d55daf4b2f17e74342194f9da1
MD5 8c477fc8a029f7a801b8333ec292d98e
BLAKE2b-256 cb29170c272dc6715a1942bb6dfc094fe15fe92b1ca305c50da746b6d0cbb12a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8420a87df0c04345fff7fdda80cb08c1edcdb8f6c1255fd9e7be7e4e715c2757
MD5 66b14841069e3987b620cccf06adc5a2
BLAKE2b-256 afa264c2bd5afdaa75f66332f98d232a8c2c528ad1e87372a1d209210bf7d5f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 069f04c8212c948cd45d15c71b2b663f15f2eb8f43c7c47381fac2d49a5d0e0b
MD5 60d6ecc93559e3ffd50c4bc32b845b5c
BLAKE2b-256 d3f3bb1a14da706e5649722640c0bb386a38d4049fc19d89313c6619495e83fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3657ed8babaf763efac6f9e5ca17361ceb233645d03ea7c0be194743854370e7
MD5 88740bf4991349f4a49dc1a7876ae7ad
BLAKE2b-256 9637d4b948bfba4a87321ee025a16531a3be396b984eb0c7ceac5ce541979dd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d35867bf4b8d596a8ed49489eac26b5f2f9e52d0c1b3df0f19289d453a6fd2c
MD5 0a7ceb13d589fd861370d44b1d8be86a
BLAKE2b-256 6b34bc4c11def15ae7705ba17240fa3fff76df1ded01e59149d644947ed4d76c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44f18176b6fda744ebcb0661768bc3408279ff37815c70fae94191750fbff36d
MD5 89a4f29fbaf6cecca19333ecd7a054ee
BLAKE2b-256 ac701cbd7931ae5686ce2aff940a987074c15c0ccb6cba9e5cb80d8fa5063f36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6465992cc86487cd33de7a8f771646af5d73a50d859914a4a874b347b407103a
MD5 ad476e83dddddcb65409ae1ad25910f9
BLAKE2b-256 08202d27c0c6aab0922884bcc8ed3088590c672c439ddb9796413e52217f1ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d06beb3dcf482e69bf77d7512db54d620cc6d81c00618cdc0f9a950ecc64ea62
MD5 c720d8a52f57a4cd39298417a3a600a6
BLAKE2b-256 5f2df491e2b74e1151f3becd9787d783a05e63bf0fa68f438e30f3eb7b1ffeb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98a883eefa0cb76b3290cf6a9141088c8259418c5c3de833df20232abe2b2b7d
MD5 88639d060a1179f58e1aa75498d54ca7
BLAKE2b-256 6ffa0560edea39437d45b46e1a65f42eec9caddb3901b887e098c6b1a23686af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1e3ea33cdcae1ca1083721fa622151310dd65f5c6ae2cfcee6a903da5a0c6a19
MD5 adab12e6f788b1adc3c57f14109e3365
BLAKE2b-256 90b396a717d23f51701707daac240f64507b1c5a05065472e0ee84d7d0c02998

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1964c0cc5f22febf39a08f2e42bbc7d75bc8d9a8c4c1edb168d9de8591886b8c
MD5 1e90a2c06d6c004619f7ea442ee7c585
BLAKE2b-256 6b46a88897f52ccfe2f74d14ec69bd424f0681583fa32b89371c0950433a5fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.8-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.8-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.8-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f03fa9ce58cadf73465f2eda8bbf5c067f4e534963284bc96413b387234c14ca
MD5 cd96ee69d19d4c3e9c7b3d04931fe427
BLAKE2b-256 9a45450997fc8c97acbf2ba8ee50c7dcc566c1c70e56c6d51ed4c7efdd54dc9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 afb95813a0899be0b70df19953e903bbb9c98874ff36a8db3bd18553d98adc0e
MD5 585bad5d0915e172b38d39b47bb1dfab
BLAKE2b-256 087685f192217c9e2067caffc13a0fa576ee39d60b5acc7cc257bd1d72e16147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e20117a34578429a0779827d11d69c76939e22cd243d78cf6f5892a0e4da1de
MD5 70e484b7492d60dbafbcb9a24c525f6f
BLAKE2b-256 ad8cbc1c78a8a7e0f4000458d87fc5f328e5d9661917be29f66f8c937be582d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1a72d05e065ffa66deba4f150bfdf57cc83874f08be619dee05bda2b82f1bd3
MD5 600d0d0bcae68061fd613849ee6ecf18
BLAKE2b-256 7a423a2f385ce7a073fc95c097681d624e26da610266fadf7251dcd0eaaa426d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc8b0bb63867a5e8e66b24e65d09a73ab29b108c14847b7a092877ef160deb28
MD5 5d53cc96a22ce4192409a406e48898dd
BLAKE2b-256 397b9400d3767dcb72bc5ad70ba6236b497be36f01230cf335bf64a3d466450c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7348ef7aaddb97aa4fa4a0fabe68731cf46319f08f20a35534437768d74f414e
MD5 0a36862d92df33230a3ad098265694d5
BLAKE2b-256 21daa3c9ca4bef5e3af7e06057a2eb3b2c2c80aa082384e0199a2f7b78541b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a408fd2c2e16d3f92436bcffebe7ec2d791c74439973905d63cb3ebc6928415e
MD5 efbcd110bd049756cd7ebf0965091e8c
BLAKE2b-256 503a860950f7690b4fb3a1d8da4a93018839cd58f48c624c9a3dd4fc90848aaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a7931a742ee0eea82bd269ce93d7c172812cf1d187feea03b572c0c8fac5700
MD5 d5e3fc4fad7bf4c5307795e6f5e6f829
BLAKE2b-256 1768b60a2b71918b673de68447410ab5e3d1f9d9e365c09a6d306700909614b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0dcdae18153e3e3e86191599ae042652278ac3e19e83414095968c41a98fa53c
MD5 5cc0a56079786a4548a8b52a5f97483e
BLAKE2b-256 82c860c692c654ea95205bf8f44bf04c3f195237fc28d35c447cf69fb75a40cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8af351ada9718ced5da8fcdf3b1e3ae3f7bcb8922823cfb40cccdf4ad9b95f8e
MD5 7fa769c68f450f4dced210329d39a8e3
BLAKE2b-256 e43dd922b995fd15dec373b9d731a81d93d57a250c0b15a100d88febf085579b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 886ac5678bd8b570f5adcee7eb6d7d7f3df27290818875c0b51020c39ddbc3be
MD5 a6569572dd8b31459363d6e8cf9a3994
BLAKE2b-256 cacfc1a7cf39963771648b4b6ae5ed5fef145a77c9d9c4cbb11dae83c0927d79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 725a55c3e0955a78352a1c2eb8a45bf7fa0c85b4f722e81da42ab0397eefaa81
MD5 975ef36915200e4fd930e9d11e06ecf0
BLAKE2b-256 9980779452f43c063095d6bfbc5099e403d2f6bb2d409d41b3c0e6cc044087cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6661f33bac9c67177aa43b4893b38fa2074210b68b8dcdc6ed72990e5b50e353
MD5 df0177f14a74657e3bd63dcf17894908
BLAKE2b-256 e5b23930070ccc1b3dca1f8c556e3537f5c24a6dd9fd8918eb62a85c2177d63e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a247c467dacdf35bb6de4cdaf9d49591f8ce118d68352e46e86d3891b7c305d
MD5 2abcf898156907e44046e6c4fa97accc
BLAKE2b-256 5246f802b528ffa618e58fbe4323bb3e645e6e7f31a0b75d6d88fb547e55ffaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c44046e8581f52d372bc0a97bf348647195f9fadd957e2504ffbc5b8a6326b86
MD5 359513aa9ff12c1886c62df9812f815f
BLAKE2b-256 98917ad8daf8ba1b5b0e8c5aea1354b1e9ce6aabe7d4f9571a47ec0f7dfc0662

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33f32fdaccf6a955d6e3f129bd33b1e829437e608d8afe050637ff3a54754c4a
MD5 9c51fd2d052fb0fdfd4f295c00e786e3
BLAKE2b-256 2456d21b879bd2f37c0abedfd5c25e37a1cfa0bfc8d17814c3b74481280532a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 984359193ec651c72ccc6377e85a98bb676ca1bc6fb5df1ed92ed3b1eebe2272
MD5 ae2569eab86ff727ec0b64f2e2dfd39f
BLAKE2b-256 0be396b5157fe2fc960ea264de4316fb4311e8c6bd010a4e559ff65f78379460

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c337bd89757579759846a412ad8f1368c8e7f952757f7f79a7790785c49b2783
MD5 61a82cec3acf7b5571f0f59c66e22d60
BLAKE2b-256 6a7c1f7489cab43656dd3509a9bb76707d3ec37eafe12eab6bb350a2a2639493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec1816df77708a15a344e79018a52d5a9da55e67728c40c10861d219facfe807
MD5 1989d42c43511d6c56fab87de09c3bb4
BLAKE2b-256 088f979d6adda82a44e3ccb963ed297c1555123d7b56b031783b6c6fbc22d185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df642f9fe641a3163c5d633227dfd4ac0b25169536c20ec06b5d502aace534ca
MD5 59859703408046f01e6a7ff468ec77a6
BLAKE2b-256 ce143009a3315a0d03e30ca70f1374048024b15f5a14c16b19171d94ce1d036f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df24ca7d766bc52af7ca4b86b0a460e885d9b95754cc23f093860c19cdfcb53c
MD5 c8c37614af7a586f2bbd0f44cec5ce7e
BLAKE2b-256 99f9c6b990434fb43658cb95ba504a15d679911a54c6b9d4fa11aebb7707c581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abf7ca0ed8ae9d6a57c6d30b6455ac37d740714ff27e7369026bf14badc3b049
MD5 0f909f1af4db31804e029a8fe597d073
BLAKE2b-256 3fec1e415753f905fbcbf728c8352e4db5a5cccb97b70bb9d7472edc70442a62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39b0058a479bc19db6ed6818eb9435a3cf0982a739d365c190c4958881743842
MD5 a8c01519c1289314e2a75535a93a1d01
BLAKE2b-256 5958a4acfd3294937fec9379b0395964532a513e87619daa2c6b9b7e816f9605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4997f9121c6179aebb1a9ebd3aaeb4e18b57027360d4af794dba4ba0be23cebc
MD5 df016db9370a7f9a8350839b7f4f44e9
BLAKE2b-256 84b8719650ebaabc6f3c23e14c54ae1949904726f3f8b3dfb4f9ca3bb8afd6e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acbb8ffde668df670235d44cea6cbf619fd459fddde29438616f80043e525f08
MD5 999bd507ed21ccd062fcc973ae053ad2
BLAKE2b-256 7ac6ff6c2aedb995d0c0c4e0ed61a284aeccbbb12c3d42833f0181bb00e025fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8f8c9877153b0ae926011edd44ab97c56e017e898593a111a8a9ea7173a7f11f
MD5 77139dc17ba2db71a3150ccd6a5778a8
BLAKE2b-256 8ef0bd3ae19b9ae8a0f90486bf0abe91937972c7e1f7fe59fc9b83bc56ae8238

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for diskcache_rs-0.4.8-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 816a6759905cfafa867ca6e6214681b1e89cfb723ccc9714a37778815ef63cd7
MD5 4340fd2898e88d68e0ea9b0cc402ae52
BLAKE2b-256 800cce4429606cc06dcdc306ebcd2fd78a291d819425dd31848bb0cccc743401

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.8-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.8-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 b90e5de0ab6dc2fc7656e022049d666ea720cab1d66edc062d869438dad63a38
MD5 7280fba331a8c694f1ff9192640c6e3d
BLAKE2b-256 a48b897aaf0b7ebd0fdb6fc578fcd6b08fb6920ea4ec445940e02cf86d80b7d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80db4cbab86195caf430af5b6d37070b444fb4499aae3f39e48fb1b470f7480e
MD5 78f248ef4f434f03c1cd2d4e78b9ffd7
BLAKE2b-256 ad0cc325d292b811d6f9c16fd53046a46430927fdc2a061cf4dbe8bc1e221b81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 96014d2da27a42823ec1bfd4379254a4609b8acdce0a2b0f69ca67a8592aebbc
MD5 3482393de01f9b7b24114b894f66f01a
BLAKE2b-256 1933efb4ecb68eb16c0a6e1641d15c5f291cd0b7eef44f0ad714f4ca050a9ecc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a72db34a6696b98f57bd5ba6095c428dc38168a3ea239fbadb2a7ce698b4eb16
MD5 f6fe6c149ea20576d2c3df154e371172
BLAKE2b-256 dbe0b61d106896b898b517b8b1147568300a72b1f3657d457f184caea87e83fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.8-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03d40d13a8f2c3a8964dfdd855eccc6e353ebb233d3b36a2236e0aa2da9a5b4e
MD5 10053d21bc6d6e92cc8b6d18af3262eb
BLAKE2b-256 9ea12abd040bcb498df5ae5f7f8023e0b7f6b93b57bedafd290ba208d78a90d4

See more details on using hashes here.

Provenance

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