Skip to main content

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

Project description

DiskCache RS

PyPI version PyPI downloads Python versions License Rust CI codecov Documentation

English Documentation

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

๐Ÿ“Š Performance Results

diskcache_rs consistently outperforms python-diskcache across all operations:

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

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

๐Ÿš€ Features

๐ŸŒŸ Core Advantages

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

๐ŸŽ›๏ธ Storage Backends

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

๐Ÿ›ก๏ธ Reliability

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

๐ŸŽฏ Problem Solved

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

๐Ÿš€ Quick Start

pip install diskcache-rs
from diskcache_rs import Cache

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

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

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

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

# Delete
del cache['key']

๐Ÿ“ฆ Installation

From PyPI (Recommended)

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

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

Wheel Types

diskcache_rs provides two types of wheels:

  1. Standard Wheels (default)

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

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

Prerequisites (Building from Source)

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

Build from Source

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

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

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

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

Development Commands

# Setup development environment
just dev

# Build standard wheels
just release

# Build ABI3 wheels
just release-abi3

# Available commands
just --list

Release Process

This project uses Commitizen for automated version management and releases.

Making Changes

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

    # Use commitizen for guided commit creation
    just commit
    
    # Or manually follow the format:
    # feat: add new feature
    # fix: resolve bug
    # docs: update documentation
    # chore: maintenance tasks
    
  2. Automatic Releases: When you push to main, the CI will:

    • Analyze commit messages since the last release
    • Automatically bump version in both Cargo.toml and pyproject.toml
    • Generate changelog
    • Create GitHub release
    • Build and publish wheels to PyPI

Manual Release Commands

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

# Manually bump version and create changelog
just bump

# Generate changelog only
just changelog

๐Ÿ”ง Usage Examples

Basic Cache Operations

from diskcache_rs import Cache

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

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

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

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

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

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

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

# Clear everything
cache.clear()

Advanced Features

from diskcache_rs import Cache, FanoutCache

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

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

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

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

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

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

High-Performance Scenarios

from diskcache_rs import FastCache

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

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

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

Network Filesystem Support

from diskcache_rs import Cache

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

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

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

Django Integration

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

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

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

Performance Comparison

import time
import diskcache
from diskcache_rs import Cache

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

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

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

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

Python-Compatible API

For drop-in compatibility with python-diskcache:

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

from diskcache_rs import Cache, FanoutCache

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

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

Network Filesystem Usage

Perfect for cloud drives and network storage:

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

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

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

๐Ÿ—๏ธ Architecture

Core Components

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

Network Filesystem Optimizations

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

๐Ÿ“‹ Feature Comparison

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

๐Ÿ“Š Performance

Benchmarks on cloud drive (Z: drive):

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

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

๐Ÿงช Testing

The project includes comprehensive tests for network filesystem compatibility:

# Basic functionality test
uv run python simple_test.py

# Network filesystem specific tests
uv run python test_network_fs.py

# Comparison with original diskcache
uv run python test_detailed_comparison.py

# Extreme conditions testing
uv run python test_extreme_conditions.py

Test Results on Cloud Drive

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

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

๐Ÿ”ง Configuration

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

Advanced Configuration (Rust API)

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

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

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

๐Ÿ“š API Reference

Cache Class

The main cache interface, compatible with python-diskcache:

from diskcache_rs import Cache

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

Methods:

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

FanoutCache Class

Sharded cache for better concurrent performance:

from diskcache_rs import FanoutCache

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

Same API as Cache, but with better concurrent performance.

FastCache Class

Memory-only cache for maximum speed:

from diskcache_rs import FastCache

cache = FastCache(max_size=1000)

Methods:

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

๏ฟฝ Testing

Running Tests

# Run all tests
uv run --group test pytest

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

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

Docker Network Testing

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

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

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

The Docker tests simulate:

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

Cross-Platform Network Testing

The test suite automatically detects and tests available network paths:

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

๏ฟฝ๐Ÿค Contributing

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

๐Ÿ“„ License

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

๐Ÿ™ Acknowledgments

๐Ÿ“š Related Projects

๐Ÿค Contributing

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

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

Development Setup

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

# One-command setup
just dev

# Available commands
just --list

Running Tests

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

๐Ÿ“„ License

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

๐Ÿ™ Acknowledgments

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

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

Project details


Download files

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

Source Distribution

diskcache_rs-0.2.1.tar.gz (132.4 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.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

diskcache_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

diskcache_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

diskcache_rs-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

diskcache_rs-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

diskcache_rs-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

diskcache_rs-0.2.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

diskcache_rs-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

diskcache_rs-0.2.1-cp313-cp313-win32.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86

diskcache_rs-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

diskcache_rs-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

diskcache_rs-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

diskcache_rs-0.2.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.2.1-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

diskcache_rs-0.2.1-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86

diskcache_rs-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

diskcache_rs-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

diskcache_rs-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

diskcache_rs-0.2.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.2.1-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

diskcache_rs-0.2.1-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

diskcache_rs-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

diskcache_rs-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

diskcache_rs-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

diskcache_rs-0.2.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.2.1-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

diskcache_rs-0.2.1-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

diskcache_rs-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

diskcache_rs-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

diskcache_rs-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

diskcache_rs-0.2.1-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

diskcache_rs-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

diskcache_rs-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

diskcache_rs-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

diskcache_rs-0.2.1-cp38-cp38-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

diskcache_rs-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

diskcache_rs-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

diskcache_rs-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

diskcache_rs-0.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-cp38-abi3-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8+Windows x86-64

diskcache_rs-0.2.1-cp38-abi3-win32.whl (1.1 MB view details)

Uploaded CPython 3.8+Windows x86

diskcache_rs-0.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

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

diskcache_rs-0.2.1-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.12+ i686

diskcache_rs-0.2.1-cp38-abi3-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

diskcache_rs-0.2.1-cp38-abi3-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file diskcache_rs-0.2.1.tar.gz.

File metadata

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

File hashes

Hashes for diskcache_rs-0.2.1.tar.gz
Algorithm Hash digest
SHA256 ddd984c39bbf0925eb8c366d56a04d2860018454330bf48450c422d1734c9c6f
MD5 f01a44ead6259ffdebefc68319e14fbc
BLAKE2b-256 89c2d5125fac92c5a7262ca6b4bc0726b8df005a28e190627f3fe1de4bcb3686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 021c78dea103d43857a001818df51c46701cb098ccf09c55e233241031fe6add
MD5 783658f4aeb541abf4e6707c4813ffd0
BLAKE2b-256 2234921186d3423463b74f81300516bb39c1b289f161ecae3211094387c39b3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc731853eefdf31127a930d162904be7264e8acc5dee1f4c9947cabe0f8c9981
MD5 b5373429fdce69ade36cb7616b874bf0
BLAKE2b-256 c852ae5ce73a72994510db8be5dfabc2e9c87351df89ced9dbe454cefccddc12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c03f58ea7dde2f97e2d8fa0e3fa999821fa9a788f585f07ef5887fb25c25a5a
MD5 f6774fad2087b040358c8e0d3700f76e
BLAKE2b-256 af68c8a1b4c2dce081a8da3e6b2cd7c65f78c88386c7f8072519199f95540599

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c28d34888fc4d77215532d1f60e4f56f7c2e88316411e16f224b6b2081e917fb
MD5 7fd97058b3e07908e37b44257b27dd60
BLAKE2b-256 08da3da6dbf5ccdc78259d187269633b391f98db94180e0adec564ee3164c9a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a8671a9a7c1173d3cbc3a38ab25cad0d8f4fbb67f830ce890eab8bd84f4c2a4
MD5 326dd0ec090e13bc2c042e174ffd6afe
BLAKE2b-256 ce7008be56c35e2b4b20b51bb95ab62fccaa89a9147c08fa2dcb5114de43e3d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 136c468214c80cb3b1bb0ec5134a0457c1035a1ee9cf05f091250ecbcc56c5b4
MD5 c6e50047c7052ffb5c52c28e1964f737
BLAKE2b-256 1dcdd57e0a2a8350993023ef29711e6c5aaccca187a1a5b95612587a51744ad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d26e4b62a5a090ad918e39c7fdbf26ec0fe608c6a68c789855b4499e18435f33
MD5 c56732f4d590476cf5ec440ec6f965dd
BLAKE2b-256 3d1c3059815d3485d7e0473b5e8cba9d24f87dd9b6fa0616d1ed99274633d2b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7c09474446eba635a2601198f0e2e1d0eeab2d8c39df7b996282727b8896491c
MD5 4c385ec5036d9b4c78c455258a24ea0a
BLAKE2b-256 8c59ac5a56e5909731ace0560f78299e282a268b30385ec9aac7e2b799b9f9b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-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.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebcdda8cbc402a050ca8bd3821117c43424756241feed9ac6ff0ae60edd4e448
MD5 2623233fd02a4293d597d1d70181765b
BLAKE2b-256 31d643741c2a6f4eaf4d425b8c344ee47eec1a32b200120ee6f565f59aa53dc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp310-pypy310_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.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a20ba62ce2b5aba08f021eeaef5e984b34cf8347b74e9dfecff50d693bb6237b
MD5 61d6b2673dbf21fb94b9fa1091545e14
BLAKE2b-256 e233c1acd121ce0495cd8c1055ca18458b5d40518d02a766e17f613dd7f0d83c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp310-pypy310_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.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e90b4031a5178fd9e256b1e62794a3177f223df18d1926b4d41bff3249052746
MD5 81d27f16c5337b02e4d89d73e39a63cf
BLAKE2b-256 a8f70c2d09b4fee433ee4efddaeba4d0938e9de56ecbd196a4704504a275245e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp310-pypy310_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.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a401c2d317ae776a59442c5d13ba67b15011510d013b82fe0b57f8b69d8d621
MD5 8763a534b9bc3d536d868a6b2f244a12
BLAKE2b-256 fac165e510a710106cf510e4879e30ae0d82a4068cc87d2740608fd83b87ceb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp310-pypy310_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.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4aab11b9d9dc689a7bc490e727f8add4a49dfb5d379c83d5cda4dfe9492b2d9e
MD5 571d27d23493b92c63ef2da2c64fc349
BLAKE2b-256 4cad3f80cb567d19a541643a09e6a14ae6137e85e89fcb3e26be576526092ab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp310-pypy310_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.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9365b0ae3fb3869c007facc29189602fae58a08514100f72c753f7a534d17fbf
MD5 85dbb9b6b53b207b57b3ce2015efc10e
BLAKE2b-256 866ae4eb48f803c76eb4656766ece40f7cfafd07c670170578206340eb15ddc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp310-pypy310_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.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6fabd47a642f52fe1f0dca1101983e21a4a1e199a3db0c765ef9c4cc3af0c0d
MD5 0b0065d28192336fa9f6b5fcca688b5f
BLAKE2b-256 e86d9423099e59e1526110a59099e08c192a6d2750126975668959966ac6d940

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp310-pypy310_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.2.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9f1ab1d52856b92791787492fe95d0dec3109e4642250d1045b60650b5c6ad09
MD5 78fb51340b802fc133100bede28c8bcd
BLAKE2b-256 ca1d2237538067ac517438316ebdd6793217dd9b0a1819353f9dc8a5eb338b3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp310-pypy310_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.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccfd23814dffbfdb9e24f0748eac7c78d11a7d09c21cccea2f7e41c7914aecf2
MD5 0ea422212298983ea5dbe170c1dee992
BLAKE2b-256 bfe218ae6bc4408dcdd18ccff998f78e9b52bda3791057b2a0b5634294469032

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp39-pypy39_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.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff6a3e705df4349db56e961fe66f477b2b0ac7871942757ebc606a1f83706288
MD5 62ec52ffe66ecfde3d1ff3bda1a16aaa
BLAKE2b-256 9907c58479d7d3e447a5f0600b59306416924c31ab62c48b78bf017678aa4e7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp39-pypy39_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.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05e9691d9e5473f9bf0969342a6a63d60835c287b950aa813bfb8cbb41b9fe76
MD5 0ec5e3a4359ed59187daaaffd8d52874
BLAKE2b-256 c8de717a598a99798626bd8e90e8ec608fe9f929fba11db4ee7f9a5e056dff38

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp39-pypy39_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.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e99ab11061434582424e97c85680a0902d2a1a93544d3394514c36bfba2c0518
MD5 87dc375b2ca802d1e9ca23216cec975d
BLAKE2b-256 ecf6bbacc83355641f62b558f3e112a2cbe85e02b438ea49ed23c2575c469487

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp39-pypy39_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.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24b0027d39bfdbaa491ef759300ca9d6eb23a83d0a6aeda070c31d65a62c3904
MD5 7c07ec8dde3d08a71b997e19866bcf67
BLAKE2b-256 c4f8ab3364fe515d02439cd9c4fa02e7c4094e5e13971f3884086436fd22931e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp39-pypy39_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.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ebb3aa0f092fb8425a6fcb9317f054930fab6807f1f25790206d1c81b946582
MD5 277c6ba46927b7c024ac2d5d0b8789d8
BLAKE2b-256 d5e3ed09dd299287151d6498acdc9ada2dcb244887678671492b8ca3175c89a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-pp39-pypy39_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.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d8c4b57b8079ca493658656ec55e9afc51da520db31164ad8d1a91ca341efa2
MD5 da229b82d42cc0e6b7df59f2574bff59
BLAKE2b-256 31754c6c70ffabdbf1ee329bad9c2a3e540a16b6a2cae7066f642a1d4cf9c663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dbcd1830834234197c911a6708937378612cdbed411cc687bfcc0fb86e83acb1
MD5 6aa1f258954f2b4a162cdf5cb58cdfbd
BLAKE2b-256 15f1aae9f0cd68c781ec01a2ac63a802ad921715e238fc86eecca50d0318d586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8860c867a7c4e332f4e2257f3c88b07d2eb1e7b0734ab14863546f91248da4ea
MD5 5f7e594a3968f0fed9561d34a5fb51da
BLAKE2b-256 0aca3329b0c98c9908c2af7155266d79a96919aa31bb57427800ef3b750eb379

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f84554d44b3bef2d1550dfb0e29282d78ad026d123319e3b0e4685d785de7b8
MD5 16b45fc9e19be5c8090b35c05d0ba47a
BLAKE2b-256 aece6cea62c92334493806eef5694d9db5dc1d465d66337aadedd1b6bac84bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc61ac124cbb636cc57b317d83293182613568599325c8755902d1b8b830221f
MD5 57cd8e1b60e6f30dd13d09780c5d33d6
BLAKE2b-256 781ec47437c84b4e11f70946b87c23f92a14f68be17043d34b8ba35737f4ea64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb2dff7368d4f114e9676461bfd2d1ba6b24c49e1440c69c22f2533512ed7164
MD5 6e020b2f3ec4406ad917bd8ce1dd66ff
BLAKE2b-256 8013e7c110452189667135425abb89fdfa34022143600214f1ea6b6261e1504b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3577669442e806c59f6f7a09ee35d6fc8c7ac02c0390687fd6fae152e37369d1
MD5 bd06b00daff4535c2cbe993aa691d67d
BLAKE2b-256 afa8dfba9663c725eef737213e53d467c40f20ff96c73849647940bb49451874

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05afef5ff1901783afd853c78c0ab652b69041b7b2340d7c245676c89ff2eed4
MD5 c117eab95dbe57855cee3466c2694187
BLAKE2b-256 2cabad8eb186d9ea76a7d6149f7bd9eaa16a7f3c53ba182a094b3e91dad4d232

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b6d4d302b87e5e6d5d9a0d0b72b6c32f84266a67ae5abf5869904fc1b63643ee
MD5 0af4a572de6cca7bc12811d2c29f7da6
BLAKE2b-256 04563533ccd68231e75a6fc2102774fe398717d399a955efc22a1e32b4fbc577

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-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.2.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f9fc2d5a313fc7fd8ced611985169169e735e453db88c69e63d986a1f3f368f6
MD5 57c0781aada99a6d65ba342086092b5f
BLAKE2b-256 2572053050e03ec6a5a31524cc64bfe77c4ee50e1b863f96470bf486f530d1ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70c848e3b7eaad8856fcb8f387e3d12918ee20b1a53ae91b1ac11ef85783ca0c
MD5 5ce5cacbdfe2a667c21c3d90017d5674
BLAKE2b-256 d7ae488f9415019c84e94177e258bd3b786c92e1f4036082a10a975f99a0a97b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32df77f41ba824e11ae68bb31d1240adac4884107084323bdd1511dc98cde602
MD5 3cc76426b3581b1df685ac8657f70d95
BLAKE2b-256 e5b6cdd1e0df93b795a800e8a105dc2a2c082d10e13f808355d278717e569d8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 231f0b2036d026c032c5084281fa0034bd0ea11d6adf1dbe3fedfa5917f70618
MD5 5dc83bf35f2774a3dafcf57a9b210097
BLAKE2b-256 21ecaecd714e5ed692fb8c20a39a6c0433b2edc09d3efe5c5745645513242610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fab24e24beb5d9f32b8f13ccd6e7ec6b0b7a3db92da96d8a26def2fb20bdd88
MD5 7b539ce82e96fbb4ff491abbc61b3ed2
BLAKE2b-256 6395b960624cf6d4741b88f9806cfdba39fedda2a9f8942c913eab2ebed8c284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9644e374ffbb9abbf6925422bf42d2e743aa5391fb97c59f528c169ab111a04f
MD5 6a423659ff28113365fa159a77cf5803
BLAKE2b-256 560c6f131a6ee0897819474bc7d225760f35d1f62e176728641d7cf7c356e2b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06beda66fc642da0fac5a1cea24cef14557f946fbb5f65ad8ec443610ee6efd3
MD5 d8ba7c3b736b24efd7e931c05ef32676
BLAKE2b-256 4b5bef6c6533d71a0aab6ac1492b54e1eafa11d7c6f6b25e768824d1c93f3d6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4d9335cc4df92ff7eae228532fe61461e5743f72272f038552fd3439f9414cb
MD5 43649dc84753760fdf39e3b36bd14707
BLAKE2b-256 bf28c41d26052f2bf87c65f98301eb71bfb4fbb3e14c116f810d2700877c9007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f705c6dfe224c2e06649f1a932d580b35c9ec381c468adffb4e1ddaf33caae21
MD5 20427f9d10252c4f1fe62c44026fdcaa
BLAKE2b-256 d9a6e2bc1ae2ac5df6bbf11cd444ed03397d74e3afd7be8b535750285742f37d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23d005b20d13e743219bd3d3cbf9d16b6d26da74b0b5e1c2afc04b05325a2f63
MD5 343af52c5b50642b6fbc1da4c6f8103d
BLAKE2b-256 70dc978cfde1109a2e2bee4b5e3c336e6ea663bf6279c9336a0feddf425de364

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-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.2.1-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.2.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e6b6559a1c52fdf5462da054e4a21416f4e7d9e73c0125aed9cd0ba105d9c556
MD5 125625f9162ca8caabc5bc88fcca7b31
BLAKE2b-256 5f713a050bf806ff7d6b6dc7f4f5334cdbd08011fbe43abe878940b94464180c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c3414c5afeff1c0953f0918ebcab84db98f09d3cf20bb57a674248449bf894c
MD5 04671afd16bb062777837e8188795989
BLAKE2b-256 5c3ffbae5629c54cabcbc4272c333a9b951858870c38a72923480fc317a1301f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-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.2.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 39288d5985e711ef1ec5cf812b4a6464937c1dc093174e0e75742dc170a4bb21
MD5 f4e5fe1a084a648265bb7d68ef9f3cb8
BLAKE2b-256 3e7d03710f660ca6591383bddbeea20b7eef06b1b2ec4a81c9a791f578709fe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8a11c46deedaffeda2593231c2f8de0fe111e55d50885b23f80e183aa0e6d61
MD5 598d4288b34c5a783eecd7259aa1ba57
BLAKE2b-256 b1233c8de983bbb0f6a5430a8b6799a34f65cec6cd4390c702b93cc1dbbd14ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07fabeeaceaf6e6a3dfaf8863011545d4f1b452456ab0ef01f120c8bd4405c86
MD5 fd12e44cb90e871b3837e90fca4d5c0f
BLAKE2b-256 af52e388fb607890c009db8eeb240c2c183d3004d5e0a6ea89fbbb85d0c988a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4231e77e3e6482c4080e7432cfbe6c883d58b1de332a25f0a0c3d203d8d856cc
MD5 8399a849b0757706aca82a3bfedb11dd
BLAKE2b-256 88a83f0d8b8408491e3618183fbe42bdf296200bb3af9c278a9f098e3b1d0e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e7c00897eccc8175931f6cd320d8618f821205d1a2738014c2e2515be6be233
MD5 0e268e89c4ddde7a783779c8903e0682
BLAKE2b-256 38c34e1d6bbfa0fa19f38308799eed2925ecf495cebafa00f2e344b435635274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e5c6803c9733de52620e7787e74fa3bbfa6e30c893bf4c26cea3d88fbf6e087
MD5 2bac951e9327aa1ac58a0bb57207c07a
BLAKE2b-256 dfb29e2e2e88d4a4d4fe389971d166271d0db4c18253644de883824f9b809ed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc4558575f1d3bb276fb0cbf9897bc181aa545230a76159fe70181394164fda2
MD5 89854b1993f2b168f438b22087984338
BLAKE2b-256 8cacd6504e709995896b79b1cd4af87186c65e7ff97bb2c6a50e329f484fd41f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ba7881a04e5c59037222f033d0c87b68565f2eb7beac1d19ee60bff413d2aa7
MD5 2484d6cc485a1a99af94bdc9945bb4c6
BLAKE2b-256 d5d306a6e0437ef97155b877497a2b0b6a7e70d4fa9fd5ebeed0dfcb74ea80c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c907b9251cb9c6bb6111f62a26b945b94d5cfc8243f0f86ffe67a23885b8bed7
MD5 5fac6e304a6f0e12c6e18cf6bebdf8d1
BLAKE2b-256 b170f19c27525958eca17a1c961fd3742d576a2497f35d320c7cbb6195ac2962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd9fcfa7394f22db33038b32cd600348e5f5d4a4f155f4be7c085f5bef5ab32c
MD5 48112c37641aa878d9a162c17162eeb3
BLAKE2b-256 9d39a7cc4e0aec07cba44759eaa8868ff1da714233c0887a9f38e7c05d57c60e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-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.2.1-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.2.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fb8910553a4dc7c41e45a983b47a0c451cab2349970fc067602382f93c1fb2af
MD5 99a74c04d357d429c56ad662d87e96f5
BLAKE2b-256 19eafc9c8cb79df337ed42c3cf665b7826fbdbed13125183985987bc6b6f54e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9733c1375b4445f3d3305ebdd5d22ed14d03be3f6c48163f8d396ccdfacbd1dd
MD5 55531bb335ca37ec6250957963c6342a
BLAKE2b-256 ed6ea93506418774fab0b211eaf92492bbf86d773475a999f40a179d3db9b90b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-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.2.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7c99451c134904ddecbc86784bb52a17b6af735fb7c81586554ace52462c792b
MD5 0ecf641589bd3bc70f5f55393db927bc
BLAKE2b-256 87fe83a64b375417524b3ab08df09372f15d4b940342c57b1491e12e892a6ab1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1034f44f1f0fb85b1045d32d8e8e299bcdff614a300099ba1e0611e93423d701
MD5 c1c326710bf9a3470804abd7e3baf50f
BLAKE2b-256 02e9c4188217e56fb37fab372ddcb66bbe6ebe2ca11afcb55ed22c88553c64dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96bb1563ea90c8b5b77990d0ff8b3633855f1dc167ded2ffe0482b6f2fc6527f
MD5 18cec18c8efc88d2578e2191e6123dcd
BLAKE2b-256 6198710740666097a0a5b2fbf3c7bf97ca850cc59d14ae836e6c8d336dafe3ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10a17f8e43014b7bc9517be2b669a65fc430eace136186bc78a859a2710b03ee
MD5 d0b01a1d1cc50ae17dc7919d38169676
BLAKE2b-256 86a495d027ddf6e95d9c87a786433ffff338f03d3e4987c52b1c38008ad9a7b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b721cba23a80e2bc5875f0c2f2a29ff73f987ce90bcc73550cf9d73dd36db1b
MD5 5d8abc2f317398cb616b524ce1f6bdcd
BLAKE2b-256 79fdbdc87020f684b9a25c771c350e1159e8b508c0f201a3d5e78abcc52383fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 038090a2a033f7cab30a0447897faca8cb457b33274c539a206f1f78e314a53d
MD5 41d72e14eba204d45ed5366e8f88126f
BLAKE2b-256 1b32f17cb21133ded2c449ab15ae3e4d8540b491b8647169af08851060d7e317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f3b56d031e935a39f37829a2f1dcde184118d431f5d21c7953bbad31a010e45
MD5 ff87f7f6ac7aa0ea790188d4647fa40f
BLAKE2b-256 91c9a80969e520369b2f52b0b643ebdd83aa03779a357e9e10652d9a6afa56d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5190b8ec09184d2f3c4f01a4b99394ab4c2235bf4c032190c145a0c934246b21
MD5 38039f3c039ec7299d54d6224dca4d57
BLAKE2b-256 5364313a4b9fe578f44494f2420c967c706392da6e248a9c9149309cef42cbae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7249a7be795ade05de17ba45d3fdb5ef8801c4b69bf377f91121e5d82b84ad41
MD5 fbdc6a6ff1a5b710a0b551872b0b0765
BLAKE2b-256 07e9806f8f7ded1a30a5e643a401693ecc0e62f45d29f7f105666c2cc7dd9fa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbf6ff9f65a094a23f1968f18e98fa6ab688cf3b3965db937878ced529664340
MD5 a6056ca1686beb2a4745afa7f05345dd
BLAKE2b-256 7645cd8ec435f1df932ad5244060785185915315d28d83f41d21dcea096cfb82

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-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.2.1-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.2.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4168d333a3260f0ae07f07e16884e59a1ca45abce38a6e611cfc9daa81e84f3f
MD5 313a431b7a40a59ae9626d349b86e619
BLAKE2b-256 ed1a70c93f5fd8ee8fe6f08f4d01dbf79a9a77190b8d10e1d1170ba1da2fe8ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f7df3d00c29217ba8faf17e278b90982d5bc78fb92e5ad0e26443e501045699e
MD5 86d5382e90bc9c046bb495a733ddb93f
BLAKE2b-256 4245d6b5ca0d9d3a2a10061a88a6996222f3dce28519ea875209ab1c4afa2fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-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.2.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d6b88f907607196f80c67ba937c11c57d0b425b118339ae2e113b263117a6481
MD5 49fdc77b8176f346cab49ed6917c3978
BLAKE2b-256 abbf8f988674e409792d7ba5f0a909c542a72a1dc4a034b7faf60920c40f0387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0ae7d206bd0d824a3c20898dd5c543d1e821254cdeda4a718e90f4f7d03de7c
MD5 d786457cfa34c1b048ae1a9d341b3b76
BLAKE2b-256 196577b1afe7efd07ccb920605061efdcc7f86bff1b01803466df84174b3d638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed7337ef93f0a49c3c90455b68f62dccef423307d95c2d38f7b0d32c20ca3b79
MD5 34fc325d2d8a708c06af195b5c48a966
BLAKE2b-256 23cc326459580dd72635d268cb73ab3dda3939851ea8002a102a9db72b41c7e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 992808b45250e043e3755d77ea1c3d22aad88affe7c5de31e66c5f856c2a5e26
MD5 41074435ea6f6f52bd519bbb5292fe96
BLAKE2b-256 c14841c574f1c004c3074e10f0afecbaea0f6409542ddd3adfbd04b20315166f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97f6be64c8116c05c4c8510d7e9d631647f3e68b942ebaefddbeae48dccfd6b3
MD5 0b576d815856156eefd030a1179ad766
BLAKE2b-256 63baa4f996af9ea94c2cfa71b4d3661e6828dc4f4ee2802f167fa84e224dd0e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76f04b2498cbf7d2ea8b2ba9077c4f880a18352d084b83b4a2776db2df895e91
MD5 b69b4ab6a304a426381871dcab5cad94
BLAKE2b-256 1def7bcfffcc676c23a8386cce1b791cfa0c182cef96ba96efdad1ed9142676f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e5ea7dcad654c7d66fa528d0dcd6117c87bed744102565b91babbdae39f1a2e
MD5 f1eeaf6e8c86ffa5b976850d6b1009cc
BLAKE2b-256 17dfa92f88ae32111442dab0fe547bf923afe4dd0b4b42ddade5c7436356aef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9997850dbe3e485854805aa36c143946bf833dbcc14d80d9e2c00bc8fcdd44f2
MD5 41f931b9c695f87400bd917548217252
BLAKE2b-256 851488cc21221a59d10b52a374aaaf5de87f411f537c4aa7ed474ad083aa2262

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1c7ee46f23f92b06c763f1217230b0c059cb197d94afac8e236c8827cb433d7e
MD5 8cd93b8030f3ab070f0dd70bb0e8ef27
BLAKE2b-256 dd8ef34e588410ac094629b645f4a9a8deb1671dde1a6c63f8b47296892ff583

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1faa9f443f63d851cac126efbf898ba85e8ea50dfa9e6562649cf4c3137fd030
MD5 5e3feaeac5a79b694df0079256671168
BLAKE2b-256 568e7a8ca41ef649cbc4422a7b4422bb20d3333a625abd5831cca30f83a87b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.2.1-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.2.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1dbaa8ae7ea98cd164fff6ac05d6ad6b555a8d7e2519c9e83d217528593b4f2c
MD5 844e7d1f25b5470dc285f13dca6d057d
BLAKE2b-256 6535cfcef76855412aed6513fd24ea3ac2bff22f028642137472da2bf5dcc4c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1eba86dac4d0c8183ccd94be3443ab7686b5781e10b16f5dcf181e857d37398
MD5 3c054f49660d10b8ac6ccb776e39eb81
BLAKE2b-256 70e92ad33900bc2fb83be45f2121a3d4bc6dc7b37671a87104f887dd22ebc7c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc753a55ca8f5a1ec86e1531145eaa69d1f5344e71f8ac07c27f3c2c96ac71d2
MD5 b2d8dc7da95750ddcedee8f414a0e449
BLAKE2b-256 2e6c2cf737a515c09bea6f850773e46e376f3d444d146bb23fa37dea83468aa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b7f97b5e55c5ddcb0469d2770c70bff91015b1bea1322c2aa6c1c231ff2ee8b
MD5 a18bae995537ef348ea8e82fa43a1d1e
BLAKE2b-256 e61f15ca4c2de690048096ef95f1aa9341dc44aa74d7e57f8c6a3c5f47250978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e81b3dfbcae8eeaa072949b3751a8b38c55a6c8202773a3d1b9c6205b507433
MD5 06e337d28728a4fed878b5ee3447fce7
BLAKE2b-256 b346d20caf7bd6c1f10cfe24cd4980066a9ed253a69ca522815f4fa09e26da9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb5e2498a7adcb09c893495ea4c0b48091dbc534f2d745e7d9fef1414d1d20f7
MD5 1ade4e8787a79cae67fc685562c6e0fc
BLAKE2b-256 8df0fd54674cfe31555060b08ce1a5ee6ce8a624dd2bad76e81dac416517547c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56b88835309a2367955285f920cbfc742a650199b9ae813fc9053370e66efdb6
MD5 167eaa0a0a91638935b57f8adbf3fe9f
BLAKE2b-256 20d0716829415d6fd68ba527095fd1459600d789554588649be8552d50b8a656

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 475d67166382d401f500f313053d7b3029308e7c04cb286b1e50732c2eee1ba4
MD5 1df94dd50caa61b251fd44eb1f8438d9
BLAKE2b-256 2ea04933b37c357458823af73d70b8a55ef4d44ad5e391d6505492ca0d7f597b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f3d86fb4aef1dc56f189a660560a49a7ad5f28e489e23c2b731f9b9582872510
MD5 fcc8d19814c5a27d04abf1d435841559
BLAKE2b-256 24874c1974680fc86481403c150247e3c213a3fba9551179851c1aef2cd73fc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2993d2df495bef932635ddd34fd49c65f1228ac85bc67dfc832aa1c22b8156b1
MD5 98d90e07ab5afee4c451b42a0b5e0044
BLAKE2b-256 cb1e16d41b5020d54d8a42b87d285ef39bde1540986ef677505b7cc92b1267a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a5d9c9046edbb0a90723274cdb67d2da59f3d83e41fe937187f87fc71c602b0
MD5 853bf3bb91dd3d629181f4984b1ed45d
BLAKE2b-256 dfc86cf85d89b83e5d807587441358a9036ab8c304318315f71160f1bd73e8b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c7549392a758099d033f12a2fffa6994349f7aa755940bb8b6f06c39a06ff90
MD5 8ed0c70a4e118d70bfcff371d2bb863f
BLAKE2b-256 1f601156077bae8eac4ef1edc66f6286f65bb54aebd3b29a02bd7d04ab9deac7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a1d458ce7fa0c23e7adbe340b1e78aef459f36b8c91a3c336421544bddc9248
MD5 c9cb9b1bd8b3b5d83e3e030a075220c0
BLAKE2b-256 457a3b1f315843201e7a92c5d85c4649728f0ae66cc59b6f671f39e30d39c95a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0979bf64a0b16c9c388e6cfe600bd1ff3eec6cdef30a39b00d0b12e011e46c6
MD5 bf67954d734c22080dba43abbb85f116
BLAKE2b-256 fd8815c02c5f51597acda79e39a5daa478272c82e3e5028f6a90b517a4ad2234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c331c31bea6357a378097fdbd11c31ae4fc8db67f5071d243907c588138a43d
MD5 aa7ea0a5e58916516ea4c64ae7039b56
BLAKE2b-256 c1b5e0b97f0e2784c721c8ed05378d863089c8916a16d78b9ca2fb9f76a1aef1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64a8624b76ea5f10c5be304e4f15df6bc485868dabebfd9f49d9030c18c7828e
MD5 243b13e23d74b8fd77072f80ce662436
BLAKE2b-256 0f4a808dc1c46e5cea9fe7245d3508de7e752a0c18b153a14807869c35557410

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 957e62f042dbabdf302ec4f9cafb221b6baa88c2036e132ea8cdba71cb7d98bb
MD5 89784481f562f82ca128b1050a7b665c
BLAKE2b-256 d81205929f0bf4e401716c70aa7e747e66063f4c367409c1025bd4ca65e70888

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for diskcache_rs-0.2.1-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 5b0d697449d7065bf2d7e1b540737ac22a7b403775f416d55ba966d377399771
MD5 19f6e7f1e7cbbaca52a331f64eb24325
BLAKE2b-256 2f83b1aa81b72dc47b9fcb05effc501bd766bd7500dc67fff6ed9f306c6ded3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: diskcache_rs-0.2.1-cp38-abi3-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.2.1-cp38-abi3-win32.whl
Algorithm Hash digest
SHA256 767919c64a1059b85c6f54821535e63de462f2622fb1ab5f8d97d32bf6f39f82
MD5 848cb90526da20a7769ad47799fbcb2d
BLAKE2b-256 3e3289ff0b6d7b79f2cac359f4ff651dd76690ceb121552c614a8b2aa7d3619a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfd4cc8a0effe9cacf9af48cf55e3f513b18ed554d4b692b8df413d8d65fa2de
MD5 05f88ec537cadcbd28618aab991c5845
BLAKE2b-256 022252530cbaa519dfcb6db94cafa0a69d81df9b84cb7d3069ad9c04a604791a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0f6fb9e686ccc4b1f2e78ac8f254bdca101a0b9704c09676424021b1fa0e4886
MD5 7295a27fbd31402ae359038fec2093bc
BLAKE2b-256 d75ae6bfc8470a52b75a9a2eacee95a754cb08270c8c175d3c21f508b6ea2a82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e16bb3700017d64dd1fbbc505adea4c35104d7bbe4529dcff648befe59ac012
MD5 a9b5b0fb76a1b645420f37196596f15f
BLAKE2b-256 fe801c5687fe5a6a8583b8677b74f930cb8ad7c5ded429a632dc3d573e28696c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for diskcache_rs-0.2.1-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07e8b86d38a0b47837a8d89680e4ca2690ae92ad635e8344ec32a971550164d1
MD5 ce02a2b2aae071b2844863df558d157d
BLAKE2b-256 df988dff7be1fa135b7c97ed56bf6d6a80fb1be7cc34c462aedd7a1795c13aa1

See more details on using hashes here.

Provenance

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