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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

diskcache_rs-0.4.3-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.3-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8+Windows x86-64

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

Uploaded CPython 3.8+Windows x86

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

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

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

Uploaded CPython 3.8+macOS 11.0+ ARM64

diskcache_rs-0.4.3-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.3.tar.gz.

File metadata

  • Download URL: diskcache_rs-0.4.3.tar.gz
  • Upload date:
  • Size: 165.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.3.tar.gz
Algorithm Hash digest
SHA256 0d38ac11c5f432b0f7f8b0b6caf624ee0cf2aaac334255e35dd0ff6f528111a5
MD5 643ccdf5b6a598d0738917322c6a45da
BLAKE2b-256 70fa10358e179c58466399c6d2d153757a05594bfe5cf7d46d1fe339e03b5d33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c67cda024ad63aac4e53b2c5ff9e3644df9c72403e169b0ac0dee5a7334aca1c
MD5 839f5247d16b7c46a9ae80509364d235
BLAKE2b-256 17abf435c961178932c8dcb59e8b42698277baff9ad1af6502d5b0b468fdfbbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81d9a16b21aeacf40d5207d85c6726bd442b1e549c176f0eea1c7f7b316c3860
MD5 12ff182525dd6490bec3c4de4c111cd0
BLAKE2b-256 b3e25a4e62f76de962ab4a3df789828b759e63c81567df1ec4226b2e1e161ef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb5bc5495e1642d86d0b4f6c32ce6e31313c0df8488ba3c55122bd165cb83d94
MD5 321f7a197f6d21225425f955cd397e1c
BLAKE2b-256 3ba75d940da68d666762203f04c971c07a870af29facece4541a5729ddb1ef17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e597f514c0c7431d120f6583c2ded2424691d724d3f8f82b8dcda2e78517146
MD5 40d37053a7dcc1270611fd83175dc2d5
BLAKE2b-256 ee61b520e8cfe429c821432a40a4897b87700844e12ddb49df50ce65275b0197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be758142e466e6d230c9fe6f0563df8c6efc0f47143a8ea2fbd51438a671deac
MD5 67ec33c1b57b52c93f58e95ff70ee14a
BLAKE2b-256 afc663284e8c0939b651d2fa8b44524dbf016afa389c5ad53a7d7ffe7129ed5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 001ac34b3c63f7090006ac51216345ab56bf7a01e7cbaf9bcb5e8e49a483b6c6
MD5 51622f21dc5da06e020cf35657242433
BLAKE2b-256 3fc30b1d0467fc53d3bc6c3f925dd837791e7e78045bcf0fb33c2cc71e94a295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 911c342013e3c4e13de21a932d6dcd0ef5d3552167168dfe1ff1e94a50f33764
MD5 276ed9341c72efdb2a4e44d9e0be1356
BLAKE2b-256 6f73f49eb668fe3584515eb748f7d9b36849f8696a57901bb2e4237689fa02a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0c9d50155dbbaecdd0045689cac72e29f642c4e8fc6f28b212822208e94a1352
MD5 9bf24aac812375bfd306fb6f993b7db6
BLAKE2b-256 36aa72d3e1a11588abd28e1dc779f8411ab51d69cc58247a56b1d069b216b070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90d1dedbf0c2e4757b3d65b47bf5e3983d2e279e6531d4e948f781d9f9302c73
MD5 392fa1fddfbae421ba3a9ef3e6410721
BLAKE2b-256 8dfff16211b3a9df0e4c1ac36bb66ba5f7aca79e30f976cd0718e53996e1792e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78b97c3e0b6af565c6b59de5ccbd78d1d769c99293b55320896ab167282451b3
MD5 df0cedcab472483add0e921b133b3806
BLAKE2b-256 56e95e4a3099420ce919e1ab267b45ecce6343d6233bf980c3799ceea6999dee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26eae6434f9439f904726658cb6fa7c3a7af6cbd3f4d782efdb29478b20ea742
MD5 fd01273dd364e4992bf5b8b27e6db581
BLAKE2b-256 c67a6e7f930d3a587d354aba5ce7954b1a3610896f7e03ad10dedebb2d58c607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b640cc1578a934bdbfe399bbdc3bcbbc32352afefa470fc155def3f7dce5eb1
MD5 c20631a4869381869400f1952e269f5e
BLAKE2b-256 a74a31b9212eaf81061cb2caf417f93c6de481dfd2faca35208ee4e331e00383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fdb61ed82e1a0835edf5e0a21817bccf49b7a2e7f765dd4111fce71a8c09d1d5
MD5 c057aeadb35bd3aa564507e1415d3b0e
BLAKE2b-256 c2e9089b2b1ac2b2b046f92c5bab8ece6b60fc62a6ccf3ab5a81998b37d32241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30524a746251752b238252af1818fc322f6cf39bc999a4f7c21a757689d0c91b
MD5 759057f1f88a0992f75ebe408d1fc60e
BLAKE2b-256 c8d36f73a47c68ec0cc3c9c9567eeb97d87d667cda54c92939fe2da985edc3c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 94f2db696679169d7ce5a3f8d7fded2ad6d8809f002f09c8ea5c5b4f5b665f79
MD5 8434874f4c17d85c895d2a72c78ee49c
BLAKE2b-256 9784f07dbd0e9b4f0e9dc3d21c48d45c17931cb7a207d94c526594149bfbde88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.3-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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 50d433f0fc00fe603379ac60e9d6da5fd1e3726b72efa322546de5a4defde962
MD5 89107ef5600fea555ab6bcaac4a2cae9
BLAKE2b-256 9c4a5d95c9c3eaacae953b8b4255d2a90a1dad54d8adb20a316e3cf12fb74c29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00a81aab58ef524f487d16fc3bbef2ab1326a1fce83313260ffec12efb0ccd2a
MD5 aa76631828a163f6f7a6b37885e02ddc
BLAKE2b-256 1b72e641d336620855e4d4e5b28a4e1b5675e916d6f8495c4c6c23c296cdc159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 487db0de347737c0f1372815c2f7463327fefa6681b1f8c67422894a07edf5ae
MD5 93deb62f1e45c5615a0d1d1f5d1224f3
BLAKE2b-256 779d40d6de2b73a27e7e69d9c85ffdebc781ccb8142a4aa25049c95c2d84a42b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d69e3fc703c54ea7739f6494775260a357af88f4ee7112112de0e82c6946ec4
MD5 b1ee2d121b73d9ead2c6e5b96b48d446
BLAKE2b-256 93a1fedd7fb69430a6f710ee6f56641108c73c1bf9157840f684d60146db301f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0a92040ea79d24a60f080ee93862af23b056091538c2257d6f49c0c627a4088
MD5 2618998a06b6c3794434a521eae86b02
BLAKE2b-256 9df8c834f6be868f46a80328e71c1d59ae39c9929cd7dfff6104ea6ba801331c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47862e35654c990f23bc581fd568745fed5d3126139aa373fff664cf974bd527
MD5 f5f7f51096c0fb9e59c259af8c484e33
BLAKE2b-256 3a6b204ea9829de469b969c02ac7ce5d9a2691fa9341bbf7513b33d3cfde79b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7872daa886fcc432bbe1ffce65a0c69ccc70e8ea7d7c157fd75e75fdfaa9bfb
MD5 065d28c0d816231bdba6187468599126
BLAKE2b-256 3e9f2f25c059d5c2c5e5fbe90276616d989892785cad4c57eeacd8b8dcc8b43c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f55ac22bd823f2f859562de3791173297a5e9ec04194fa56e6b8e02fc215a7c
MD5 5d53114eb8cc0259ecb6c75bfe8f98ed
BLAKE2b-256 691c211a41f10b606eaf2649ee2e3b2a2fa7025fa1817e2b3775f72d9df0f0b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b131555194039dec5200a4172ce1180f9ea83962102408bf41faf12a46c4f834
MD5 6dfb6f11a0fb32799cd8f9cbd67b33c7
BLAKE2b-256 af9d6318ae00f0aa8d9a8dc6b83e92f7020120cee85cd4489f97b764c02b2081

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76210538acbab85dc4e70cf5a88b021745e58c46edb003c57c4f0ec7b32654c7
MD5 eaf9e206dfa92296d5fca9c0e28872bc
BLAKE2b-256 27f230c5c18e90bdcca304072167aee8eea7ed9be55b672005e81882f1b5b6e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.3-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.3-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.3-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 03f6fa9096e57b3b34099fd17603f1b660a0ebb0978d3b8f69939d3b5e9bfb5b
MD5 2646803a15d93b4f98a623dad3d4679f
BLAKE2b-256 c9a08c9bda0fee1e43e16e715a2c9dce2bafb4b7fe01f4bc621d0ebfea2ed1ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a67044aa79445002b49ef7e2e542293edc7f6cc7385ffc173b59c19ab94e7a8f
MD5 3da7408c7d8dc248779b00f45476a63f
BLAKE2b-256 9ee9b0f9daaf04fbbe17964a744da28cfc601035f5bb49b1fa8f0db872166a93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce8906bb01bad3506d0e8a1b32b4e96aa70223898a1ca328f759065cbdfc84eb
MD5 6d125ee7de750efa855146ad6fc8c1d1
BLAKE2b-256 46cad5226bb0048dcddb079f4a96dc7f28d3eb82a4b55b3493eb0a6178e0d1ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 820a48d1cb417da0afd5af1fcda686f1ef911969a27a3e3542af5537303f6b52
MD5 fab00ba2fc5c2f594d4bbbac382853b0
BLAKE2b-256 6621f85728535f12b474e4132c8a4451c29b76708c8291ffe0a3c7c724d5fa0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 667a7eb582e5f93745e4eab6454d3610102af7a2862c915724ba87a4a26cf8cc
MD5 f6e654cdd4b6f1eee0f3f40cc0568d41
BLAKE2b-256 4e9aace445c137f6624904a77292009eeec562d8fc91017aa08527a44f1dac54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 75be6a22e69fe10c72cf91b70ecfd5d3b7b9912667cd562f0744a435f0b3ae41
MD5 378e77ab1d788aee76d02b3e3d944010
BLAKE2b-256 41dd7ff939dde9c6610f3f158ca9f4e6426679e6c7bfe458d5b3f631ec7b82c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cb8fa4464403645d1c813a4d410529211c9532fa79b9cc28d5b8e75c596d792
MD5 bfe1ad0b56da2543617c92bb477fd746
BLAKE2b-256 eab3690115422b9cfa2e672fd50ef79cdaf65be567dc3101e6af8b692911f414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 91dfa2560bf559e433af10572bcd3d06e0ee4d219f8e74317f37eb7f7ad4813f
MD5 635ab783c8f9ced0c8c184224f6673a3
BLAKE2b-256 9d318a4fbd970410d397a0a7979439c0148375c1192abcb9c09c8b991d8f80d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0cdd13b899a8a8e44c782a3dcf5e6bc1116afc7da26b94c78830fc5ad99e9d7
MD5 a09dc3bc7c5d0e0deea26ab353df9d4a
BLAKE2b-256 32ecb27691f27777724e8374b50f085f2affccf093c0c0ad4c437c1919ac11c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf4170ba51f6cceafd389961351a6f920f8ca5dd45e9149aa8ee6f113b5d15e0
MD5 039e1284626dacb2dbf001f53d871c79
BLAKE2b-256 bb12be1c0350f81d95826397d8d48df8083c3a0a073327326a7de400b95a3557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf570b4d9c7aa69c0c5dd7225a733adf853b88fbd00982a4fed70377d13a64ff
MD5 3d48e778b6e992bc043681f4c356e2c5
BLAKE2b-256 066eaacb5bdc49536d72dc3d78c615db12a1b174d8ea52c26bb31a5cf4cc923c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e16a55606b0937a58ed23cd26096b17783b72dfcc185cb21ccfea908e0910798
MD5 f9c37dd8b7f3c731bce9cba4bdbe2516
BLAKE2b-256 3734135294fcaabf05c501cfcb1ad44f53c26b0df1c4dc1babf0a578401ca5be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa58c31ed3664bdabd62bd15377ed481386fde1276a2e48780a50d1aff7095e5
MD5 19fd7a60670dd13ecadb484de5a40dd3
BLAKE2b-256 6d1d0ae17e7f231771eccf1624bb340e05114c132f272f3f2ad0960c68883c94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 471cb5b985e4f21fad46d64523ccb34c90c7fafb57d85232b6eb4879865c0ea7
MD5 786eeb9de1ffb94017e3f4db56a5811f
BLAKE2b-256 d648a430611374fa375be9783f456298a7d414e51e9606c4af6041da502af81f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8636985afe36b8a7c35a76028e1835c5a22d039e430bc2e1f65525afafe797d
MD5 815b356668fd6b0f2ac4ed32813c5ae9
BLAKE2b-256 17b4c3e0b7ecdac64a6c2c935f18e43f9899446cba0a99f2d8bbd220fa7d70b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4b0adf516ffc7c96ba8d3fddf7c7528c50f163c7f419b0b6aed3c6659dd66d4
MD5 7b4c9c4065567dd8bc56ddf1b1343f5c
BLAKE2b-256 9253c26b4d1e074d0be6ebb5e094ba99ed47b6180ff7d464c050bbb6d66d68c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67ac223a480b9466af6dce243523a34696707e20bd06d4b0c0e1663fc8f8b2d4
MD5 347d738f7439a6579c49ff677cf6dbb1
BLAKE2b-256 89ac8924e255ceedcad0cde923af32a62578f68ce84efdf6e6abf2277110195a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.3-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.3-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.3-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 54d80d7b01eaf9326e5a0b068c4afa320de279837e78e7ef285c1ca5f614f4c0
MD5 6331ac0dfa8a1b56cab1d740dae31e85
BLAKE2b-256 c4a91e5f76d90333118d69c2d5f1123371c60cb9a8ae961931ef0faa7e051ecc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8425bcbf93659e88a00d9f011c0aec45dda51cf7c15858cf4d56121d8a2609c6
MD5 47090442e230373014c22a18bf2bcff4
BLAKE2b-256 e0990424f09ae5da9bb459b8f46541d667150633c2e93902981f827a3c91358c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed5f557e91f423ca15c2789078e2bc00af5bfe317dc9aa9ca4e43a1710346011
MD5 4bed534495dd9cb92ac01b81782227f9
BLAKE2b-256 3b5fcb8d21b2ea207de942623f663d3276801bb4d4c834556e9c14e4cfebfa01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31bdc6457d60348159cc9e756d75fa7a999267fd745189ce4bea04c54e685c52
MD5 dfa00e889325b6a19439e6234a77700e
BLAKE2b-256 70491ca12834304bc4bbe00deae735e7d8f0fb9bcb341e4754d3f58c9f15467d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85ca5c0a19824b112acbeda2af2f3231d788675af08e516c5af9defd845c408d
MD5 438179deb68dd43881d7e3a724e0e8fc
BLAKE2b-256 0920290a5ddafb852f9b54c517b347d7c63a9e26abc4bacc43df56649e4eab5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 464e836979609a1341e709455bd2cd91577113f53479647fe4a0e8cff0cf38a1
MD5 035d87c73b56aed2c9a17b836103280c
BLAKE2b-256 7befaa607eb450341c66e2c07f91bd02c19bc19916aa457844b2cbe65d670c16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e79b5b171f087c78c12e8ce9b7009fd58e2c499d9b0379258d3c9e272ff8defa
MD5 58e303dbf2ea18a78148881ad54cf316
BLAKE2b-256 b95b2b24b1b5db369dba1ce8fe0fc99b52eb18f20e069ec3614e033e0271cc0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b50434091bd7cc23bd11341dc971ecafa1b743e243e248c6bd93d497c52d4212
MD5 d017f09f4aeaf14dc1f15e48d5d68c26
BLAKE2b-256 8e61385b278aad83cd0d062acd8325fad655193929f3f395734c9c14ce0df9c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a44742a5023a11b74d3c30c414e50664733cadd6373c62c82d4f959043f0a48c
MD5 75085b5bda85c1839efefd3ece70e1f9
BLAKE2b-256 6fa22048727de4d5de096d7239a9ea0499db309e707e0e91f1d4a54b73b5e632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c1ea11fcf4f1b6d8344b992a9eb91741aea9a1f59fb3a95fa7c73719d0c46363
MD5 b70d92d47860661f47f0a790425ca9a6
BLAKE2b-256 486ae1907c4c5a163a3b307528f2bea74b20b50dd5eecec16c2ad082321d1d8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 533681471ee571a11a4db6d32780c8c000bb5f7ed199e1c59833584714460fe0
MD5 c8703f36c1371b31e48cb13abbb047a3
BLAKE2b-256 58a4afa062c7c3865cbe599a69852efd39c3c7a10c8dc68098950cd969f71a03

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.3-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.3-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.3-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 33b144b42b09c2ecffdd1675a4fa1a8f1cf92a90d64ac0b68d9c561f3b15a279
MD5 bf12fbdda580887b8f880af6e1f326db
BLAKE2b-256 978a5b1a73326d4c8a511f8c4120e9a0920809361ea3ab3baa664a0e9b966985

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1659e1d598b0d5b699dbd5db4292ce0fdf85fbbd4a75b0d7549589fb332a4561
MD5 27d2a1b8695f2828b79044ddf92d66a5
BLAKE2b-256 b1ab861bde0414d26585e35aa9693c7235923d38df3bd1652d97591de41e44dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb1de0c5ec2d9ea9fffb13a8572e2adf77938efcd78b3021cefd2b5ce738b9e1
MD5 882043a3ea83ef60e73953e4ecc52493
BLAKE2b-256 61c87c46b7d776609d77798065d03a9588ee65933631f5c92ba63d27785add38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35e9a2fceb6781e5d23dc31ff3023e29371fdb14d80351c19c2a5e09796d0d1f
MD5 6cb293b69698bed72d459ad2ca19ba28
BLAKE2b-256 fac609393cc068d170adc87e1c441af484b0f1fee445853b55c8b4d7c52173e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f5119cd54c528985a06194a409236c777ffcd6e08870a6d96b5ed00a2c385437
MD5 23cf087be6b3171c3581b08e423645b8
BLAKE2b-256 d0ec890c0d5d22b581a8897ee9d2e464f7e4a5d4544c5f8b4de0cb271eb78b0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fccdeca037cc3cc2eff5261fc1f8a610eadcc26374aaa5f919854b1d602a4edd
MD5 9f2e88efc0dc0e6505a6e12d677697cc
BLAKE2b-256 0c979f5bedc80b3ac93775844b4e9854410feca121596912fd10163b0842ea8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 696ba80c8727e7cba324410106e043e4c1bccc2112f12bae26915088e5deaed6
MD5 51ddf7ef969029bd26b6d8c89d32d027
BLAKE2b-256 97b58705de0a8b47c55df9ff094040d4b3f42367c0a584a30ec1c8e2f38cc7b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a6a2022ff1b288bd915c221feea76f15e9ca058efa89853cfe7946168eeda7f
MD5 eb355a8be20c5ddf8778e46c116067c0
BLAKE2b-256 3e7607b6fcec53ea606a83a9936e8079d2b3cd77d238de50ae9af74246cd69ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adb07e4b6ba831d5e6bba9c11a4f8acefbda7d7b25b472232f5b17fbd9fae52d
MD5 c82b2823dfb143228ce441853a042f42
BLAKE2b-256 d69ff6b6ffb3fe56da292557c1eec30e9a4a847677c8a3cd66391f28e080a806

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6de8ea95d93e2d96accce434066d25fc87abbe3fcde7e5349527081f8e9dbac0
MD5 e84ed3e30376884be9e07ab7e82887ff
BLAKE2b-256 a9649c41d76ad6e2dfa7f931c5735af7d574df80ca1d2d7b87cc0f82570344c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80ecb5af1af6a5167e546e9951bf173e6a54f67c2dd2c553ec197b8c82f915c2
MD5 73b25dff27995ca1e2decf5a79554b2c
BLAKE2b-256 d427a80cc5dca1ff2322c9bd33a005f5f1c6cb2f7ece15d9ace6466bd40c7bd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.3-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.3-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.3-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9cec7685eb775acebd1219212be16c515c403efe0c73fd7ab9add7f207e716a0
MD5 5aae255cc1dfce9c25dffccad4faa3c5
BLAKE2b-256 a0b2196fee7f938b5dcb26eb5a217c976c4e34a5639760e8ded81044d52e3f6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 570cdb87794a9fd3dba83bf0d9cf0794aef6930fe3d564e5605c36d3757725a7
MD5 2073f83ab3181ab4e5c0b2c7c474d0f0
BLAKE2b-256 ec0c9308280988b199b78d15c4b7dde55a4ed911cfca96dfb0382c53fc167ed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cbda5165f2f375dcf9e9f309db338b926906608f765d616a42e080d7be8ce33
MD5 d584b4e8c26848e413026b2729a2d3b0
BLAKE2b-256 fad76e87bcc47f3db352f2d05b7283d689b2f7ac0c974e852116e37ad111ff4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d92105d476bc8683d9cedd2fba731d273d806f4c1b622616487ca8b9265975e
MD5 c4bdf513e81ddf500e676510956f7e89
BLAKE2b-256 6afdd81feaadb488194db46107cfbd4e7a68cc14695164c523c3d95ab632a14d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48174889b753aea4d5e1240412c75caf3ac8a12eee0ca7f53fc158e0f5fdfd5f
MD5 e8f67e6355ad77369621136bc3ef8815
BLAKE2b-256 9f09a33ace6888785fd568c065ace9b412e2d385242eeaba8eb70a33ebc8ce6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba648484feff501d45195c5d7817bc84660f5708297be4db7b29994d570adb16
MD5 1113ecd0feaa1746351d76d203b0bf29
BLAKE2b-256 89aab621c559902cc84f4e0e5197a98e4e4aaadbc4bf7b5d47c67e504a9013a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40dd5c207f97c88993317c6e84c1f0dc9bc7e3e59254568078aea2223bfd7260
MD5 72c1bc9561779cac54aa47f6ff991568
BLAKE2b-256 3cf9e9960dd61e6b094dca6209da79c7639f4eeeff273a73b79da5fdb3b79f09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d8784ee8d5523de263caf127cb14c2033a881167760fbac9362f11047825285
MD5 33078b25e2af6cf87ae7b86d07ae1255
BLAKE2b-256 4be41bff99063303fbb34d4a8afa40c7f056120e7ae76ef2d14ed37858ed0daf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59030631ef057cef299ad764940401edd25fb4b9093cd767a3d9381d53bdff41
MD5 8b1d981aae3f05d40e57f274e0131ace
BLAKE2b-256 2d5d8c8df301ded0a32ab637193b0fea8a29313c6061108b297fc4cd39690b96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a239781c65b95f572754e785c9ebef1c67440e481308288a9b462a3acf2ab4c
MD5 89346b395cc19030d0c58ad1600959e7
BLAKE2b-256 448c3f864f1d1908f94571b9e77fdaa03e684e38af836d337ac30f8ac58b57ca

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for diskcache_rs-0.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6ca4fdee3356f73ade178b561f53c7ffb6e6e844d3542e56f2d9772bcf031a64
MD5 7c0be4faea5cdd208d965547b93c245c
BLAKE2b-256 e0772aae0b81c3cef3fbd72589e816e5e2eb7d276f759defa91252d484365911

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.4.3-cp39-cp39-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file diskcache_rs-0.4.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9746101c6e65ce85d8823ae9d36b7b5eac331abc06c6ac6236bd74a7f4df47f7
MD5 359ab238313802a044bf13fde67ebec0
BLAKE2b-256 2f9f09ad7d71fb7fcb3ec7bfacfa32702d4bdc5f0043700368620b42052caefb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de16312e677d3dca4ea8c617abedca2c02eed9fd2e2bb658bcfc4317df52399f
MD5 39a954a217f205eca4c8e950be0ee6dd
BLAKE2b-256 bed45ac6c65592f8a1b1e9bd8bc483ed51d6b9aea777e4f5fd144bb68ef734eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb7f9817a6a623d33404ffbd5497da30772505d81032200c93d06cfa899aa70d
MD5 419b3d9918ea7010747ed146a509d709
BLAKE2b-256 48b6d2736c825f25feb8389f0dedc994053f3cd1bbeb1bfd8be1eef9b0014bf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66d54439d86f44147ad0fd0c74884324a86fe8395bdd10c42d78fb75e2f1efd5
MD5 0b01e013572cf1c491ec36bcd5d0a09d
BLAKE2b-256 851b5f925331708ce2dc481d64774b4b46213d057f620a2ea0b0ba024be92ebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2774144b2233532af348075d70dc88899e5c0ad8014cc0c30153dc12392ccb3
MD5 a31dc79078aec440375367460c4b2cdd
BLAKE2b-256 a61d3b09e40b5eb568ec9f94e7ce0197d4ba305cd8a4671a25b11225f511147b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c8507e36274557af15266a147237fe28818e53c4db7184b773453d6410cf0d9
MD5 21563cf87a8384dd647e484e3f4a24ec
BLAKE2b-256 b3868f6feb90d9c4661927d151a9f5bee8a07def94db9d1d7bd376e8b4b096a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1782435df8c74cae2e0c080e0de9fb737c387dbd2f4de1fb2fcdeea9a5643422
MD5 1495b315102777384d9a69032114d24c
BLAKE2b-256 838da852a368522f00778b604a5ba8d8ed1ed7ed38c7a84fe419598887b2a7ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0df9935d89406eecf6c1019688d784e041ba8423e67a21a10972607ced9c7480
MD5 3bc4aaceea8e365d01301d6901e8b696
BLAKE2b-256 f97dfb74623f0aeda94d0a52449984b8df00ed9a958f49c0a66f60fde93b8161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8c593b26dff5050eadb6ba9559238ec59fe8056b9e4e5b27064fa9ac464a174
MD5 3269ce6cfd3e465ab0055d85c8c85071
BLAKE2b-256 334421059971e504a428fcd5d109da507577195d337495b48fcf4392350f31c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ade1b5f1bbec04756845f3e4ff1afca56d1a873b9ac6fe111e48a1c176452e96
MD5 50a06956b5f2e55633c1881f4cf2c2b5
BLAKE2b-256 8081018005a1b447f2624f25314dcdb7c47f5cb8a3d392fa51ae0d32eca839df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e4ce2cb30bea9a64df6f28e6417b88ee418f7db6dd2415ab9c12a8f62207268
MD5 c07f2d7bb587eb13fbc1490a379c27dd
BLAKE2b-256 8aa5e0b504fc96cbb68fd4c4fba566aaf9b2e9d895fe14328a32005009856aba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d9459ca77a13d5a9f82869b77601f957e2d2f69e4178bcf69de48dce8e0f0e8
MD5 6138b1d7c98e70c4b9e61e3b17408d7c
BLAKE2b-256 9a1cbe6ea594452a90e4cecc403730a0173a2216d6d5a604f489578d3b4dff34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e06efa4c225ee851b3594461a1741c3e83c5e5e251f1c294d186dbe017e9c822
MD5 6edeb7477c86d79f34c6e4cdb10e80dd
BLAKE2b-256 8afdc1c666d3e43783f356bab029ec68625719c0d103e42cff4d60cf8dfd0bac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aac04ae6dca0865f3c6e7f85e46ed9b93b43e048558c33a7ae6c31515dd2ab57
MD5 e8e8ad9c2c9a6f177ca3c75da60e384c
BLAKE2b-256 67aefa75383f47fbb987bfb648d7b5094d50704b991e97d64af0c4f6333eb3fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d0e9c75979a58553bb6f098d587a27a3791bf3a5f40377b7099fbdefba0fa28
MD5 a25e1504bc817f0ebf35d4704d3c664f
BLAKE2b-256 0be1d48f1095030c290f88fb1243f6c784a38c75e3d004644fbd8cc2052909b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b3964a8f43eb2835977fb2ada96f6cda97b0f6f8ece6fe58bd206019bb2300b7
MD5 25edc90268d45b101a835ce2b98c70ed
BLAKE2b-256 22b2a6874bc5a3a6e15b80d5d2336472e0412f5a5b89b5687ac42fd30f80554a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.3-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.3-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 0a09352ddad4ed0cce301b46e763dab894860b5a61f9312be3d1c780f8248757
MD5 e2b2e661d1dbbdbb48fd964b44a7541c
BLAKE2b-256 efc54dbd52e5035cffd42f15587c6a4809f08b8457f4b7371e82c93691f2f5ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.4.3-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.3-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 b9088d8184c8b85e25060ab0a2acb3d1c0b45b074e1e2b5785ac63880a4c7975
MD5 f062a6a6b527efcbdff972d68411bc65
BLAKE2b-256 16019b0c6614b950282758fec225c255af2e9df8239a33d2e89583afddd90039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e33228bde9e59b61541811d3312ace07e4c893933af7e3b9e5c3ba2865d4a8d0
MD5 a35f5a532bb555f1663738195f368c20
BLAKE2b-256 cf9a18b60e03215034d4c88608a3cd2e9f6b9e2b2011f2f2405bad9c541d88b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a4739b97de639e83e13a73842617dd5b5266afe9139b53e326cf1cc2d71a0f16
MD5 0a4fdc3ec21ae4ef29f1b92b5937cc26
BLAKE2b-256 95cb6487dd29028eebec5f71ffdd01af88398428dd2eb588ff423e909267dac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 803fb45e52c4427f8293ebf58f064d4cf42f47147d087082afc1731cf01f7d0a
MD5 1c8dd50b5ca1130c6094370d4993abf9
BLAKE2b-256 4eb5b550b89518c53d781fa474e0c40d78168b5ec5d963c9afaef11fdf546b2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.4.3-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d70d8afff7d9198e8304ab586073fa7c6a7149ba186d643dfb2710aa7dd8078c
MD5 26de9f77e1286fb110d5be99b44c8de2
BLAKE2b-256 591df8cb2108db345f91edf4a712865d0706eb3c986a5a88aee2e272bca858ac

See more details on using hashes here.

Provenance

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