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.9.tar.gz (235.6 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.9-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.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.4.9-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.9-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.9-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.9-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.9-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.9-cp314-cp314t-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.9-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.9-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

diskcache_rs-0.4.9-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.9-cp314-cp314-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.9-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.9-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.9-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.9-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.9-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.9-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.9-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.9-cp313-cp313t-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.4.9-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.9-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

diskcache_rs-0.4.9-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.9-cp313-cp313-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12Windows x86-64

diskcache_rs-0.4.9-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.9-cp312-cp312-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11Windows x86-64

diskcache_rs-0.4.9-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.9-cp311-cp311-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10Windows x86-64

diskcache_rs-0.4.9-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.9-cp310-cp310-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.9-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.9-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.9-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.9-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.9-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.9-cp39-cp39-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

diskcache_rs-0.4.9-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.9-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.9-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.9-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.9-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.9-cp38-cp38-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8+Windows x86-64

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

Uploaded CPython 3.8+Windows x86

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

Uploaded CPython 3.8+macOS 11.0+ ARM64

diskcache_rs-0.4.9-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.9.tar.gz.

File metadata

  • Download URL: diskcache_rs-0.4.9.tar.gz
  • Upload date:
  • Size: 235.6 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.9.tar.gz
Algorithm Hash digest
SHA256 aab13b51970c7a1f9908735cc0674d007940de886b9b21fe9096bbc6c27c92a5
MD5 cb1577571d74fb326688043f3a8965d7
BLAKE2b-256 dbd21b380693154c0dd78edefb0a8394dba88742dc25fb73d1f839ca39c67c6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e498171768d0e7fe0eba8cb32fa1526bd2b043a4b15e52d58619cec70689466
MD5 a6fa0f0c2529392a304159b05396b4d4
BLAKE2b-256 0347aa945a14cfc90f09644e387dc6189845b465e3a65740172d91aae61cfbb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7c53d71b4529e5acd884fa2ee4598eb86e02da888ac4162b01ec35795d19d7c
MD5 d4c61ecf4b11a7a57f689dfa4af8eb7c
BLAKE2b-256 a264145b71a0cecbad94d0e5b9d3567cc3eea49adff32b8b795ce28d923216ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40b186a4d2668b098c989bcaedd1914cc5e516dcb27ce6227a6a0c45fd95af0d
MD5 d4e83a10347826a9459aa69c1ee9021c
BLAKE2b-256 76a713be4b43f7244a1cacfa3117f65e09d9afe4379a3ca68c7913c1446727e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd1c21bf9afb46ddba0ac1747f0ad5779893a1221b7764a157f2a2d98d317900
MD5 e3930741946071dde89672f7403b55a5
BLAKE2b-256 508b14d729b8f9c3f2b7ba7ff5f40a1de35d985609a938caea892f65cacf929f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86a85b40c0e8a82d28327c25af995efc9826ff931fee1f831381b657a2078b61
MD5 6e99cdeb452c19bcd57399d495c4e544
BLAKE2b-256 7762757fa05cf2c69e4ebb8e485b421310bb908e434e2a9afe86db8627f409bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f41d61aa0374f33d2a722e6e9553e9cd4bce69bf47e6dfd5bd1e976854855b7
MD5 4b4c0c4e2bab0068680d26e3e6a48bf8
BLAKE2b-256 e83dd134cf0cdd63ed75b9232486e04b8dff833def28cb459a5872cd7179a876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad0f4bfa3d4918b400ecca6ba68a72e1d5222354041bc8c7cc32d77bbcba5816
MD5 47e1e01b4116e687bcfb2ee38938cbb2
BLAKE2b-256 f91c90e0d2600626cf382e88d6b4a1cf3bf5a5fceee830707b93e034bd895692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e26954682b98d37be4fed85ce8064bdc2952f7ef6d92dd0280f76804e6ba090f
MD5 6c862be674b19f686a144c0865761b5f
BLAKE2b-256 d70fc329a4cd65e82817a31503a39889c0cba117a9cf6ecc7fc71f3d10e82db3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a53860597b69c9a47537740ecbadc499db54414fbdf4e4ff7365cf080116442
MD5 8a721eb4d59368ecff983b5b9c1fa224
BLAKE2b-256 63c31ec1269df18dc65c0c5ed989be7d3210f0cb003cfc6c45d1e94c6bd0e270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80547b6ed51e4432b99ccc5bba59a1640cd5d9f22584db8bce1549e1263529c8
MD5 70eae421444ca76055129c64e8a2676f
BLAKE2b-256 a317c6809ae7d6c5782980c15105aa6e1865d461ad5a93b830c392fe86a2672e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d726a0ba0d0c6afe146346fe5f4ff5d07b2a2020c9f616d066e22ffb54fa0aef
MD5 c6d63c56602566ecd4b615aaa512d187
BLAKE2b-256 faaf5007a5732c6b2cb6bb4925db8ff4f34a2a91e612d45bc53d48fd66341279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abd5d0cb0cf35816070f10ca155f1f07f98da4cf3f070d9833be73ef634525c3
MD5 14fdcd79053c074f9365918cb6fd0698
BLAKE2b-256 4a2f39f17d226993849f59f9eba3ac4914a6dc768f046396de84fff0e25ec17f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ad1cfdafa7533007fc6acd967070c3335ca64c75bba22935f489c8ed6ad76ea
MD5 58d801b46a41b891cdb717515b558c6e
BLAKE2b-256 c6392bb25bad6437d3573037a4b2a2190161856dc15d0e008306f1c0bf3a158a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f23267e2057854bd3fa66812136e2424de2a20faa5af44b093f6965f0456408c
MD5 fc15a503f2932b93801a849b6c16ac79
BLAKE2b-256 df3a77a5ef8ede62a6cc3d5abf050201a00a45596b8e407e250fcd8a812c8df4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 40907c6869a6e5bd1ba18b1fa065c773b79e783b11fd7daf6fdc8b8fb0547bf6
MD5 0642253965777cab3e3dbc18db88ddd2
BLAKE2b-256 c60dcabd56d5a3a2f420d1ea839ebc6864c62282da6b9732ae6bda56118f8570

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.9-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.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fe5febfaaddb9fc71ae200e722fcc83b6962e0afda8eded4a5f63a726f3aaec5
MD5 a7c40ad26b5ac7820295cf8f68e7dc90
BLAKE2b-256 d60ec3898ba166f11dfce0a610aba46925123e589d53a9334567df5c6474de20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 503fb9857bf18df776c4433600567b6106f619c71c66b22783b26277d62dff25
MD5 e7dc62bc4fc88f93f5705739bf1ffa58
BLAKE2b-256 595214337018d41b06c4089093201f5fa48a28ff9401e6cd23fc465a1322bb5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b27920b999827ebaa9be01fe8549616a8259d6e47383e9a27024593aac63cadd
MD5 e97de4ba4b0a7363404960fe4b952a80
BLAKE2b-256 b02170f0c6cd8b06377e0c2629f1f81d3bf7e8541855887b9005bdc51a8b0003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9da88353355d23bd26ad5f9818e8f622de17ada0cd2d3eeb1f4c045f45764a25
MD5 10e9cfd7d81ef0c7d763d4be2d4d861b
BLAKE2b-256 b4b063592793c531380885a0f087a3027a2481e436c6b8a88d6fbaeec4f517ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23fa012b423b6df339ba74a68a08e6a6e7d8ddca75d533b24eaf39936f01c28e
MD5 55f5d86b0d6763637570865f90b177bc
BLAKE2b-256 a5413b2baaf7fe3bd83af1b9629ab35ef96065666873673f1304cdd02717fc08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0e53fe9149f6b663b95f00a1bd775e5ba33e6c76bfa5fac654f867e9ec7f1b1
MD5 d45a2772c6c9dc51e665ecd57073ce8e
BLAKE2b-256 41261d85ed6b2447239e695bcd768e6ac2a299e0fcb0a1202e97f5c320343446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8927a3e6b8fb05eff15820fc623b7e4b0a3867169a8af4141b984b2057fb6dd1
MD5 fa73ff7d39b8ca4e9f557badab91ac1f
BLAKE2b-256 af072dda21d3b426a6945da3925603c6c963728f1b5d94a856c43b2509e9853e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55bc29211a9de835742eeb29ba353b35f975c9f8115211a722cf34b3e33fae35
MD5 adb1358606214c26cce8d9ef502f2ea8
BLAKE2b-256 cb4af1899db57bfd41f495a932aece41082d4be6a6ab56410f0f83fa1a19b3c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 44d4e13cd25a6fe73cf043e27f1234e039443fba6a856ec260a021114f27033d
MD5 52351a43c5bf75a9ece1b9392cae379e
BLAKE2b-256 22133e3fbe2f8a47b62693f6483bdbcd59e78cb79c736998a0be63cb8d15b0cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 938cdd4311671fdf9f1bed244ea892a52aeb32a965351d0a78972f2bc3af830d
MD5 21039f3e00e5332bc12f2b7615613eed
BLAKE2b-256 f6b559fdb7b15fb979466fe783722595cf7fc05e83df9758416404c834b66bbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.9-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.9-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.9-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 edaf03f441e2e7582ed191dfb26bc8cebd190d5516b5cd0a59f47dc839eca120
MD5 a60f268351f9f9a8c20db94fe021c3ec
BLAKE2b-256 0dfd3055decd8f5216191420c009ef3055aea6abbc7c850ed8ec05d95745fa3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0093bbe6724887591bd70a8b945bdd100499f7aa1765ab3525bd867885e70f6
MD5 417914990c212871d90e32cf304565cf
BLAKE2b-256 f358c41a448f3abff82585fca6c2e702d162d5acc58857e80a0dda1afbebca3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fd22916256d7ee4f9ce5446e14055f46cce89e01f52e07adb9046f250edf7e2
MD5 42c5b01ae883ef01317949b6e6b27a0d
BLAKE2b-256 3012057d982158c8ed71bb2eb987da63b7f2d7cd95f387b6e34a07c5a55c2597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4a284a3751841bfedf0afc615c64619a441f2b17d0aec67be79611e111ccdbd
MD5 9a654d9792a50589711a84d8e975d630
BLAKE2b-256 c60f3893d3b0aee7898b62a47e7d40a78cfcd5c6a899aa921b2ef0c65c82ad91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 548ba777a05e957e216828be6c7537dbe2eedd6e5da18987d7d008156a24a0be
MD5 a5d31e2aaf409aecad3ad7a85cce21db
BLAKE2b-256 3a96babcf65ad8f9c60ed6b2cc8c1c193c4472f65c396a9b40518cc18be0a566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00c06d31d90bcb661f7dd864e5f64264f4009df1b0d3abc7308c5242e2f8e617
MD5 ef9c92c63d7e889c07748ad3724d8188
BLAKE2b-256 6e8959608287822bfd7cdd080ab92625b0f147d0822533580471a20e5810840e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc7298d3142d07080cc4b45894ebc306cb299b1ebd7cd100a6555df31fde8986
MD5 05e00f910727b3b5d0b3dadb9b849ac4
BLAKE2b-256 0502298d8fab84af311d07292a643605c6e5ccf9a2e0c18714d3a59d24fad59e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 24416e2339f2e848c68814c47e104f5de05c845fdc05966c57e88d2ee155e886
MD5 2b29abf8bfc9a31aee6c9dadda787c51
BLAKE2b-256 83b4bea1866f7e65c1e14754f648aa548812150ad76fa40fcc9d0c1ae58a84c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 529c1ca7862acc48c7a0aa0d45423bb857a8aa6f2335e8c904ea39a83ef93e40
MD5 d3d14cad9f6e9da58168c03c364b00c6
BLAKE2b-256 26ed665f0e633e3ef70f37291d274d0e7694aaed415251f3cf63c9b329402db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 768d11f0c55b537c2f12106e015f098e584b68294c1a590eae2cf51088af9b2e
MD5 116fd17e0b9fc2d94e56c5215e032d13
BLAKE2b-256 5b8436fc48927d8711476dc3e41e5239828362e5b9758d5c4a20b113d7fb15de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ffe2ae4c4dc2934496f80182d3ec6b6ab605e526f1d2876b70b1615d4ce63bf
MD5 c58bfd8f6933c95f26c241a0220758de
BLAKE2b-256 0ea06aab527dd82d104a71a414a57358fcffc82ebff1f7724208aa2f7937ff8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ce5bddc551210effc19e1154317a2a6525da51907490eced23a6c5bef1088da
MD5 2a9f7218cd151e5e4104bd9be426edb6
BLAKE2b-256 10bd4bb309e810ebfffa73867c68817c3fc92883f18be05a79d25376d9ee849c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c09c4a8dd8dcd6f155cb06886aec4aef235b6be33281b92a984d64779152a702
MD5 653ad09d3f5a5dc3831bd290c2b937f9
BLAKE2b-256 ea743fbf0b2373c34a3054ddc4239786df3ba28574f47bc3a6aea11d1b7b511e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b80ef8013b625b1c977af2799b71e461463e8fa6ad0f8f926bdf730eacbea527
MD5 01c14867eda20ac3b2b807c802266a51
BLAKE2b-256 f2ef3d10786ced63f33105ad6fcf00e8fe0a6e669bc39673505e9ef43807cb23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9978c7d0ad87f2389ee155b8f3f77f18204c0cc952cd0d39df98f84ef928c3d
MD5 0bd98220aaadf99545e20abe84205800
BLAKE2b-256 c29f61d75c9e0ceaa4e83ea63a0e72e50e4c252415f0f7881ae84159f85ca355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 63ab9ec4cae1740ff65a59f6525b27e6b404c176428ac7f5845bdf33b472f788
MD5 b69786f23b5b9c267cc891d1efd8594d
BLAKE2b-256 8032c570d4b2399a762ebb0f538bd809ed6f60b98a08a2dcc44d06366e5052b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fee25b7a38398caab4282218cff209912ea0d1bc75ee7297d0d5fece1423343b
MD5 45d8b41d6da0ee6e4cc8992b75eabffa
BLAKE2b-256 d9244f6d468dd32c6e005c8386cc969bb047744d231ec013763ca972d9b17b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.9-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.9-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.9-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9bf5e121242ebc79a7d84f68b6d8ae6db1021fbf1019136ec1c5bcbc37f0f2df
MD5 0a61c79d0f924958930c6feae7570f0d
BLAKE2b-256 f3b6b09b5621851acf915a37c8eb86a7ee8d22128116a8b36c996befd49a6e35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9009a95573ccb49ffcbb9e9399291c44ebb918507c9d7750fb9d8454577ba34b
MD5 e027c9becef87a7d72858b53682d2b4c
BLAKE2b-256 0ed4969849ff56ba6f97fe1c31870aee7c86d572647bdc7a9144f8b6aa20bc09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0562ed8202ddc7c23c888496feadb87a19ab79dda8f43209faa196096cc31702
MD5 37d177597b761fcd5461cb8537e0c7bc
BLAKE2b-256 57760d06dd12b1ec94f921f2af01511c7b8f82bfdc151dae6aabd0d1999d08e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82349f0142f86783d5dc728c5b22eaf55d03da272389ba326edebf8197d48c36
MD5 69917116c56ba8c5538b318fbdfe0bae
BLAKE2b-256 c292e3f9623ca83dbdec0a10d74fc433ce3c90bada0bdd59bb52bbdfcb141186

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be847bb70cf9641a5cabb32327509cb5371c28ee42a937d6b566677cebc6eef7
MD5 3251749e1cadd77ab0a21e8de6cc11c9
BLAKE2b-256 f99ef61827d677f55cec3fdf07f8941edb13e21faa742a629533376bcccbbbc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94da2a2da1f27dba60425d8f3f089ac1492c7823af41900588d5781fe0836dd1
MD5 6191969cb67c58e171baeb7bee09857e
BLAKE2b-256 a986e01100212c6f5d09ee911cba49900c721465526769ede09735e27870034d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3abcae43fef50707916674aa7f9c28ab61aa4ae081c8b105ef22dad51073bea1
MD5 c01c447cb9ac0b56d3cd656d604fb07a
BLAKE2b-256 9419953e44c41ee9ceb3b4554e264a99e51a1bf18269ecb055651d726197866b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b2de3a8d47c76adbd29d91b31d932874d13349f32d0645b5794242b4d4e1d89
MD5 f83a19faee1fc27fbf12ccf21493b0be
BLAKE2b-256 606d71cb200e28cbce9730e300001888a4956563170adda23cebc6afd69d2a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d39502c53451e7bf286734e54931b5d5494090514e52203e1b5e8b8183d737e
MD5 4cf552e505c5603c91c46b7625cff81e
BLAKE2b-256 5b7024d722998178b8673563ace26b91ccb0daeaf7555d58e06cfc87af31fd21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ffe31f4325f8cb86d341345ecd9d767337e2682ea8bdb90c64bdddf2ba027a72
MD5 7c02962325f25c21f750424a75a0f67d
BLAKE2b-256 23566db9e787614a0c640cdba3852a9524a3582ee6a490217c3c340ff8c0d93b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c479b48ec7888bdaab4704a6ae569749a852340a89fba533146854b6ba11b80d
MD5 924a0ceacd17f34a88046e72efe05684
BLAKE2b-256 529c94b810884ddc94f14127bdd424626a471234eeae7f705d7f3773d6c7b34b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.9-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.9-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.9-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0f6e53691545c163de8eb160d13288993ea3a0532cf2bec06da9a41f7886aad3
MD5 7e2a7d8a5736d9facb198d1b843f756e
BLAKE2b-256 42e343f8c49f5f2a9125bb90c3a4f6b1118bca3dd238ff46c63987f937047e89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 549443c757353b78e2d68508962afd91da0a974924ac7d2b5efbb3cf49dfdf74
MD5 de90d5cef7b2f13a5656d0ab442793b5
BLAKE2b-256 e7a913348e0e53e6c9e56b70252ef23cd5015f41e75906764f7939fde32822cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3813828214925e52dd5b9c6771846b4a4cff2eca17a769410c590cd3dd558877
MD5 50b5f6afc3708baca3b34c844639c4cc
BLAKE2b-256 69c0613108945d2151a78e8488a25381b31741b01ab1143a6aef01a1408b8e19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85abd6f944e90b2aee7fb0b92180aa9a150ed8f5d52b4b43223c6c715e1e8a9f
MD5 6b3ce1be699b68fa039e1b36ce688064
BLAKE2b-256 08d45a33c6b4bd7bd999746016fd32b2474a63f884c769be5f39bea07ddba5f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85434c623d0e0dfb4cbbbe44a2736fef0636e2856a65afd4b9b430c07246cadd
MD5 e632dbd38b1ea80743409eb0e2f88699
BLAKE2b-256 f7477b03d5cc9e3f6ee215b558d00859df040bb16ba4fc2a54ac0ef4e2be6134

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1906a2d65ad0a26e7a6d2c88272e3c68568db4e1ae6d4cc8321af08b1ca5ab11
MD5 0d418dbe88d44958f705aedac84b88c8
BLAKE2b-256 37ff43799c8afb0db119bff7d6066d3c0ed453bd3b830685c258323ea864eba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24ce463d85225f3396914bef603f324d1566eedb56b8be08d601129255dab251
MD5 cb9caf8587ece3894b48908cfdc0f502
BLAKE2b-256 91a6a427189daac1668e0752607c08567212f4940475b2eb62e3ef7226394c2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a8aa72371af20c0858e418f18adfc9304106418b18c936b8377aa0f5025bdf8
MD5 bd88b761643963e78b14a6005d68d6f8
BLAKE2b-256 d3823b8d4e05fa19575913e4028a19c85f6acd4ec4db0f6a80910516d738b4d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 605355bdc6c260b8af39385e256051835bd63af381aa4fcfe58ebd9e00f16e94
MD5 21a0e8f91fc5e41e954417dbffb6611e
BLAKE2b-256 76dd020894def7d0f10038953762c5a8f562c1c96c8919c3f2fb1f421be1d0ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 34ae127a7e709839a59abe2e95b6219850d1afd63bb9e0082f15555b806305ca
MD5 b5ac6792e43ef57cf27ac611e98c8092
BLAKE2b-256 2552da22b6b96246408738c120f42956ebf9012a893d1682186081c2b82f4f54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ec4da542c0c5d4183ba7c6847094dca07d4b7dc1419af20cf3edf4c24d093bb
MD5 254e92b5c4127536a3a1d66dc5e2975b
BLAKE2b-256 7968f6a33f438c8a426b5600322d6e9dd0282a4b7776626686dc677f8caa9db8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.9-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.9-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.9-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 bbdd92a5771df8e9b67bbf1ad5ee6e3e0dd2eccfe196ea336d0e1b8a725f113c
MD5 0a64f15f94e6ba76058eea3384d43a5d
BLAKE2b-256 81229f642486fcf4281c2f683f7b5ed04dcae581041467375125fd00e1be8d66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 83ed0c8fb5d5d5b3c315c5648edae8e9d727cd36d7fb359253ecf55ee3e90822
MD5 10d8e0861d355e53955712a1dc168993
BLAKE2b-256 b55bb4f45dc0214bf5e44b649e2ecc4c45fbcde6056825329c972381cd8337fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 192da70a2952947b029fd8b5b0a8c6b43e1e5085a783680f9679ee76f2cbbe85
MD5 96dc65cfd4d1884c50ebcf6f619ce735
BLAKE2b-256 6ecaa08b7afe618114d3793b52126b6a35098b309cc2e2da6425a4eed7ba2466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fec5702e01af9b8de669a8e77dd8ef34bd8f370e9e63b36ef2051f6a7c9f9b89
MD5 fcf72ad944134bfda888b02d76e2c5c2
BLAKE2b-256 ef3f23b4f107222c2a06e7a5aaa22e603d9280af8585d54fd1354d6b5c011ce2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 435d731af4ef689ee7b5a960bd95ad112b8f98c7a03a91c323e621b9cff9f3f4
MD5 7327e01dfc845b09fe4c4c15c2df4990
BLAKE2b-256 2abe1880c290c1fce5389fbcf0d371a023babf741eaba008b7eb7d2e1d299eaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49370fd77567a3ed2a0efd4142e56180bed03dbc02fc5265040674efc3138f3f
MD5 e88b82d61de1deb3e8b05e3a4216eb86
BLAKE2b-256 d1ff819fba24f237eacf1b2b63da91b56b636de344c9500a82359c6cc77ade0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a4fb7f09c993f744422bd895195fbe2a9452d87ed1923dbf7b9661f93fdb0c1
MD5 2a83cad8e250ca6e471d48f7630f97ca
BLAKE2b-256 342ed041ee8ae5953d6aedb56f26eab0b03282b1dc89d15136c3c3febaf14a10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc8a3da134b956f4104164c71d7c3cb9b07ca656623a3c57c446f18808a93a58
MD5 1b887c272133210d9dc6175265ae92c8
BLAKE2b-256 e4761378d8f002e1421b886199418cbac7ad3f36688211390ca7c35169bb37b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a132f8aefa12f4982fe5ed8082153bf83d0e3c4498605aaf5668d35b35f7572
MD5 4b8a2fabbbe3a9f794dcf991307c89cf
BLAKE2b-256 322b987fdcd623275abce490a58769903bdb5eb207da8b54f98f57798ad206ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 61eb9455708b606e18d29e38d60827cfa30c1fcaf33f8b8e9d6f9fc422ff92ed
MD5 48c6bd3c22749b9214f8e54b3130fb81
BLAKE2b-256 ffdf08f1482240320ad01783368d3994bd1baa7989d3b8da07f7301b323f234e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7acbc64dc403f6ed51d419848db5486bea0e14ee12594af6fc083d20f956b2c
MD5 ee76bdc03d611c12cb659bb7a58723ee
BLAKE2b-256 c10f1a30ffb1d4bc807c0fc357d06c28988f75e2f7c5403835dd3f618ebc7995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 179f493217ecd0efeea53969c143294b130f80b8f5a6bd9dacc5c9469209f020
MD5 076e06fb8b44b915d4bbc3c24f55e17a
BLAKE2b-256 e34e925a5f27d213e8900235da1721545d7e4e982757a764362e77c7d4a27c69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d4d051e480b589963f7b8c045d455903f8825c8f0c6069299094f8dd9fe5e71
MD5 214d62e26bacc1996da3a617d4de18fa
BLAKE2b-256 ce345f4f403b489a56c41bfb6f9afcde51c3a84499b8535b624c8227cde629b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb33c24b1da4f358aa0c88ea0da77e3779ed251cb7bf0692d8a1624a2ced820d
MD5 2f5b2477d4889938eb78dca077a82ee2
BLAKE2b-256 18a859339414c8ec217881a7b085b0f7cdc00f14568246c2a27c0e36f60f0499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 450a3d5a4fb6410dbb379af2492424e1b919e8a8278fd50c817df850bd0facbd
MD5 f2a0c62dd4c7748c0cf49ee34cfdc2bb
BLAKE2b-256 2ab4405a29a6b6017f8940c7f295f1a7918ed12b25531a1646c6424e2bf75bd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07f784fb633b6eb9a37bc2b2d566600b6e52c9dea0143fb6844e9dd62d18f41c
MD5 1459fe8a6fce98bc46f7c86b0fa13ee2
BLAKE2b-256 89844b383937a308430fb4286bb1b300cd7787ddb33e13fc5ef73de0f51155a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 627c93a67bda03ef5001e697232a377f13925b3c033e174b477849f73f6785ed
MD5 6e78a6e16e47cd92363454a6e83ec877
BLAKE2b-256 0b20556c17259312a1e8a8a966be6c6deaf69baf49850d1eaaf4f3d553b28738

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5678519773b7a321c78935ef594c490066fc2977fc16166c46d85c0e4989efb0
MD5 4655e0180577531dc7c208a41a8575cf
BLAKE2b-256 dd706690b1d2a3bf122c691579130fa3c5827efdfa394d99f507569c9367aa0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 633435102cc236d22da2465d84e97b595c31a10a375343175f72a072e90acfe8
MD5 623afc34b6166b078094be8963d2826b
BLAKE2b-256 aa7fb589cc057c8a31a8894ea38facdd68a186fe962560953b69bced1faf6fd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26ee19019f48ebe76660e45b82984ba8c22c931aabe08f9c89b635edb8fef3ac
MD5 faf0788acc8b91610b32b8397555f227
BLAKE2b-256 bdcc899725214662c1f15c7f7c3ab75ed36967eef4cb17e36f7e15c826de4d17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 751da02aa9d9a70a97a16568d4c7b2a2a71a10d7e6786015de531c85b6babc2b
MD5 979582ce200b805a055f9d39f932ead9
BLAKE2b-256 cc370a85ddc5122a6795fe164de8c0a3e90203abb6b5969f690a14d1d0140c33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40a6ee6548b5f4298d016f8b1ac496e9976f8bdad106ed7cb2855b3d5e8ff9e7
MD5 d2478e0308ecaa48317e3864d4bd2e49
BLAKE2b-256 a4e25f692ed6343edb41c8a1958e3a017a05265f667d761f45766f8b69aa71e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b389e43cbd2be042c0a9c2ae886239d9bf17c30cf91882f93e5b46265dd66cef
MD5 50701407bda46af3c8319c50311016f7
BLAKE2b-256 3a9cde2b71a98915f6ca704ea0f085afc45aed690616523477b5344eb7a0c7f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea3c2918e3e99b983b08c7f430c3642e79de6832b674f51c94c95afcff379dc0
MD5 febaa1a03c71d673d9e4a5a9a7a2e1e3
BLAKE2b-256 7158330f134e4ff036318d06501a4d1cdaabc79a1bf8fe62a89301b3617256e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42ad8b42923b41ac4ed7b84022f58d28f871a15324cb16f53f43308512944304
MD5 2c4a9dd4231e4c9c11816bea70f9200c
BLAKE2b-256 9559cb04e7fbc8d0cf6275a4f539b1fa108c0c013cb56d99761cf238d47f87a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c94e61a0f146a33878a87d2ed6a022eacd6ca15f60c9dfab525fd9bbeff6f68e
MD5 4e6db93d29b68520c92b6438815cbe9e
BLAKE2b-256 7a323310bb254d8947bf26c9d653d3876b771adfa091915e930be1b4a6952735

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.9-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.9-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 3eb589cfb22fb5ee6c55daccd0f48ddcd238045a59cd773f107f274e266531ba
MD5 d53a8d528e774a11da14ff1148bea05e
BLAKE2b-256 8ebeded419e5bb542f5eca0cf7e003bf32335580964a69de3c1f77f69a164945

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.9-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.9-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 066ba13d5674469b5afc4e105911c4127f68a2c24c0fd6f90de546c71b4b5d80
MD5 bef51adb1260fe29f5f2b7bb1a0b613f
BLAKE2b-256 f7b9bf0bf6aac93c556ea6de4f1ae8688ce97471396749725f816c147083ac9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f181e9da60e6c7e8733be4d838623b58234280ce927752378d7fb7843e9a6b1
MD5 74c19b6c597bcb2b01701f2c5c5bff30
BLAKE2b-256 1bfc43e7294012be0b2199f025376ab763877688677a0fbf0af0ad1f4f797a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 56a64b4a8d73c2d87364c5750d0914bc1f6e123a4368089304994cd4411ed6cc
MD5 675391f740203bcc3f1a5d40d90e61b7
BLAKE2b-256 891496e8d8bbadbad44608ab283d29d941202fccce83ffa31694c27265e594c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fef2e21471ee39f63c8368fcaae56abdf4ec3f64f4062d71ebbcc5d4886674ca
MD5 e21bb9b4936b28687ae72c1ed21e339f
BLAKE2b-256 c149c5d331bb56e89af5bd9b120f380511f9232172f90f8881708ea85ad3f05c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.9-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 77e44e33a3da519bc28a23d1eb8ad03d602277b449c9c62c9ebd80bb45fd35bb
MD5 e9891212efce4d53a2eb08cad23f2cc4
BLAKE2b-256 d6130a33479faccff6d1e6954cb6382ae4f1e6c7895793143dadee34bf257dbb

See more details on using hashes here.

Provenance

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