Skip to main content

A fast, Rust-powered Python logging library inspired by loguru

Project description

Logust

CI PyPI version Downloads Python Versions License: MIT

A fast, Rust-powered Python logging library inspired by loguru.

Features

  • Blazing Fast - Rust-powered core delivers up to 17x faster performance than loguru
  • Beautiful by Default - Colored output with zero configuration needed
  • Caller Information - Automatic module, function, and line number in every log
  • Console & File Sinks - Output to stdout, stderr, or files with different formats
  • Simple API - loguru-compatible interface for easy migration
  • File Management - Size/time-based rotation, retention policies, gzip compression
  • JSON Support - Built-in serialization for structured logging
  • Context Binding - Attach metadata to log records with bind()
  • Exception Handling - Automatic traceback capture with catch() decorator
  • Custom Levels - Define your own log levels with colors and icons
  • Color Markup - Inline <red>color</red> tags in log messages
  • Async Writing - Optional thread-safe async file writes with enqueue=True
  • Zero-Config Integrations - Built-in support for standard logging, FastAPI, and function timing

Benchmarks

Comparison with Python logging and loguru (10,000 log messages):

Scenario logging loguru logust vs loguru
File write (sync) 57 ms 67 ms 11 ms 6x faster
Formatted messages 56 ms 67 ms 11 ms 6x faster
JSON serialize N/A 137 ms 10 ms 14x faster
Context binding N/A 66 ms 10 ms 7x faster

Async writes

Scenario loguru logust vs loguru
File write (async) 313 ms 10 ms 31x faster
Sync vs Async overhead 4x slower No overhead -

loguru's enqueue=True adds significant overhead due to Python's Queue. Logust uses Rust's lock-free channels, maintaining speed while offloading I/O.

Summary: logust is 17x faster than loguru on average with rich caller information included in every log message.

Installation

pip install logust

Quick Start

import logust

logust.info("Hello, Logust!")
logust.debug("Debug message")
logust.warning("Warning message")
logust.error("Error message")
logust.success("Success message")

Output:

2025-12-25 12:00:00.123 | INFO     | __main__:<module>:3 - Hello, Logust!
2025-12-25 12:00:00.123 | DEBUG    | __main__:<module>:4 - Debug message
2025-12-25 12:00:00.123 | WARNING  | __main__:<module>:5 - Warning message
2025-12-25 12:00:00.123 | ERROR    | __main__:<module>:6 - Error message
2025-12-25 12:00:00.123 | SUCCESS  | __main__:<module>:7 - Success message

The default format includes caller information (module, function, line) for easy debugging.

Log Levels

8 built-in levels from lowest to highest severity:

from logust import logger

logger.trace("Trace message")     # TRACE (5)
logger.debug("Debug message")     # DEBUG (10)
logger.info("Info message")       # INFO (20)
logger.success("Success message") # SUCCESS (25)
logger.warning("Warning message") # WARNING (30)
logger.error("Error message")     # ERROR (40)
logger.fail("Fail message")       # FAIL (45)
logger.critical("Critical!")      # CRITICAL (50)

Level Filtering

from logust import logger, LogLevel

# Only show WARNING and above
logger.set_level(LogLevel.Warning)
# Or using string
logger.set_level("warning")

# Check current level
current = logger.get_level()

# Check if level is enabled
if logger.is_level_enabled("DEBUG"):
    logger.debug("This runs only if DEBUG is enabled")

File Output

from logust import logger

# Basic file output
logger.add("app.log")

# With rotation and retention
logger.add("app.log", rotation="500 MB", retention="10 days")

# Time-based rotation with compression
logger.add("app.log", rotation="daily", compression=True)

# Error-only file with specific level
logger.add("error.log", level="ERROR")

# Async writes for high-throughput scenarios
logger.add("async.log", enqueue=True)

Rotation Options

  • Size-based: "100 KB", "500 MB", "1 GB"
  • Time-based: "hourly", "daily"

Retention Options

  • Time-based: "7 days", "30 days"
  • Count-based: 5 (keep last 5 files)

Console Output

import sys
from logust import logger

# Remove default console handler
logger.remove()

# Add stdout with colors
logger.add(sys.stdout, colorize=True)

# Add stderr with JSON output
logger.add(sys.stderr, serialize=True)

# Multiple outputs with different formats
logger.add(sys.stdout, colorize=True, format="{level} | {message}")
logger.add(sys.stderr, serialize=True)  # JSON to stderr
logger.add("app.log", rotation="daily")  # File for archival

JSON Output

from logust import logger

# JSON file output
logger.add("app.json", serialize=True)
logger.info("Structured log")
# Output: {"time":"2025-12-25 12:00:00.123","level":"INFO","message":"Structured log"}

# With context binding
user_logger = logger.bind(user_id="123", session="abc")
user_logger.info("User action")
# Output: {"time":"...","level":"INFO","message":"User action","extra":{"user_id":"123","session":"abc"}}

Custom Format

from logust import logger

# Custom format template
logger.add("custom.log", format="[{level}] {message}")

# Available placeholders:
# {time}       - Timestamp
# {level}      - Log level name
# {level:<8}   - Level with width specifier
# {message}    - Log message
# {name}       - Module name
# {function}   - Function name
# {line}       - Line number
# {extra[key]} - Extra context fields

Context Binding

from logust import logger

# Permanent binding - returns new logger
user_logger = logger.bind(user_id="123", session="abc")
user_logger.info("User logged in")

# Temporary binding with context manager
with logger.contextualize(request_id="req-456"):
    logger.info("Processing request")  # includes request_id
logger.info("Request done")  # no request_id

Exception Handling

The catch() Decorator

from logust import logger

@logger.catch(ValueError, level="WARNING")
def risky_function():
    raise ValueError("Something went wrong")

risky_function()  # Logs the exception, doesn't re-raise

@logger.catch(reraise=True)
def critical_function():
    raise RuntimeError("Critical error")

critical_function()  # Logs and re-raises

The exception() Method

try:
    result = 1 / 0
except:
    logger.exception("Division failed")
    # Logs ERROR with full traceback automatically

Using opt(exception=True)

try:
    risky_operation()
except:
    logger.opt(exception=True).error("Operation failed")

Color Markup

from logust import logger

# Inline color tags in messages
logger.info("<red>Error</red> in <blue>module</blue>")
logger.warning("<bold><yellow>Warning:</yellow></bold> Check this")

# Available tags:
# Colors: red, green, yellow, blue, magenta, cyan, white, black
# Bright: bright_red, bright_green, bright_blue, etc.
# Styles: bold (b), italic (i), underline (u), dim, strike (s)

Custom Levels

from logust import logger

# Register a custom level
logger.level("NOTICE", no=25, color="cyan", icon="!")

# Use the custom level
logger.log("NOTICE", "Custom level message")
logger.log(25, "Using numeric level")

Lazy Evaluation

Defer expensive computations until the message is actually emitted:

def expensive_computation():
    # Only runs if DEBUG level is enabled
    return complex_calculation()

logger.opt(lazy=True).debug("Result: {}", expensive_computation)

Enhanced Tracebacks

try:
    a = 10
    b = 0
    result = a / b
except:
    # Show variable values at each frame
    logger.opt(diagnose=True).error("Calculation failed")
    # Output includes: a = 10, b = 0

    # Extended backtrace beyond catch point
    logger.opt(backtrace=True).error("Full stack trace")

Callbacks

from logust import logger

def my_callback(record):
    # Send to external service, metrics, etc.
    print(f"Log received: {record['level']} - {record['message']}")

# Add callback
callback_id = logger.add_callback(my_callback, level="ERROR")

logger.error("This triggers the callback")

# Remove callback
logger.remove_callback(callback_id)

Handler Management

from logust import logger

# Add handler and get ID
handler_id = logger.add("app.log")

# Remove specific handler
logger.remove(handler_id)

# Remove ALL handlers (including console)
logger.remove()

# Disable/enable console output
logger.disable()
logger.enable()

# Check if console is enabled
if logger.is_enabled():
    logger.info("Console is active")

# Flush all pending writes
logger.complete()

Configure from Dict

from logust import logger

logger.configure(
    handlers=[
        {"sink": "app.log", "level": "INFO", "rotation": "1 day"},
        {"sink": "debug.log", "level": "DEBUG"},
        {"sink": "app.json", "serialize": True},
    ],
    levels=[
        {"name": "NOTICE", "no": 25, "color": "cyan"},
    ],
    extra={"app": "myapp", "version": "1.0"},
)

Log Parsing

Parse existing log files:

from logust import parse, parse_json

# Parse text logs with regex pattern
for record in parse("app.log", r"(?P<time>[\d-]+ [\d:.]+) \| (?P<level>\w+) \| (?P<message>.*)"):
    print(record["level"], record["message"])

# Parse JSON logs
for record in parse_json("app.json"):
    print(record["level"], record["message"])

Filter by Handler

from logust import logger

# Only log errors from specific module
logger.add("errors.log", filter=lambda r: "database" in r.get("message", ""))

# Level-based filter
logger.add("warnings.log", filter=lambda r: r.get("level") == "WARNING")

Integrations

Zero-config utilities in logust.contrib:

Intercept Standard Logging

from logust.contrib import intercept_logging

# Redirect ALL standard logging to logust
intercept_logging()

# Now third-party libraries use logust too
import logging
logging.info("This goes through logust!")

Function Timing Decorators

from logust.contrib import log_fn, debug_fn

@log_fn
def process_data(items):
    return [x * 2 for x in items]

process_data([1, 2, 3])
# Logs: "Called process_data with elapsed_time=0.001"

@debug_fn
async def fetch_user(user_id):
    return await db.get(user_id)

FastAPI / Starlette Middleware

from fastapi import FastAPI
from logust.contrib.starlette import setup_fastapi

app = FastAPI()
setup_fastapi(app, skip_routes=["/health"])

# That's it! You get:
# - Request/response logging with timing
# - Request IDs in all logs
# - Standard logging redirected to logust

Complete API Reference

Logger Methods

Method Description
trace/debug/info/success/warning/error/fail/critical(message) Log at specific level
log(level, message) Log at any level (name or number)
exception(message) Log ERROR with current traceback
add(sink, **options) Add file handler
remove(handler_id) Remove handler
bind(**kwargs) Create logger with bound context
contextualize(**kwargs) Temporary context (context manager)
catch(exception, **options) Exception catching decorator
opt(**options) Per-message options
patch(patcher) Create logger with record patcher
level(name, no, color, icon) Register custom level
set_level(level) Set minimum console level
get_level() Get current console level
is_level_enabled(level) Check if level is enabled
enable()/disable() Toggle console output
complete() Flush all handlers
add_callback(fn, level) Add log callback
remove_callback(id) Remove callback
configure(**options) Configure from dicts

Handler Options (add())

Option Type Description
level str | LogLevel Minimum level for handler
format str Custom format template
rotation str Rotation strategy (files only)
retention str | int Retention policy (files only)
compression bool Gzip rotated files (files only)
serialize bool JSON output
filter callable Filter function
enqueue bool Async writes (files only)
colorize bool ANSI colors (console only, auto-detect if None)

Opt Options (opt())

Option Description
lazy=True Defer callable evaluation
exception=True Auto-capture traceback
backtrace=True Extended stack trace
diagnose=True Show variable values
depth=N Stack frame adjustment

Development

# Clone the repository
git clone https://github.com/yamaaaaaa31/logust.git
cd logust

# Create virtual environment
uv venv && source .venv/bin/activate

# Install maturin and dev dependencies
uv pip install maturin pre-commit

# Development build
maturin develop

# Set up pre-commit hooks
pre-commit install
pre-commit install --hook-type pre-push

# Run tests
cargo test                # Rust tests
pytest tests/             # Python tests

# Run benchmarks
python benchmarks/bench_throughput.py

# Test installation
python -c "import logust; logust.info('It works!')"

Pre-commit Hooks

This project uses pre-commit to maintain code quality. The following checks run automatically:

Hook Stage Description
cargo fmt pre-commit Rust formatting
cargo clippy pre-commit Rust linting
cargo check pre-commit Rust compilation check
cargo test pre-push Rust tests
ruff pre-commit Python linting + auto-fix
ruff-format pre-commit Python formatting
mypy pre-commit Python type checking

Run all checks manually:

pre-commit run --all-files

Requirements

  • Python >= 3.10
  • Rust (for development)

Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

Quick Start for Contributors

git clone https://github.com/yamaaaaaa31/logust.git
cd logust
uv venv && source .venv/bin/activate
uv pip install maturin pre-commit
maturin develop
pre-commit install

License

This project is licensed under the MIT License.

The MIT License is a permissive license that allows:

  • Commercial use
  • Modification
  • Distribution
  • Private use

The only requirement is to include the license and copyright notice in copies of the software.

See LICENSE for the full text.


Logust - Fast logging for Python, powered by Rust.

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

logust-0.2.0.tar.gz (95.1 kB view details)

Uploaded Source

Built Distributions

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

logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (772.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (811.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (837.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (746.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (605.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (569.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (563.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

logust-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (769.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

logust-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (807.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

logust-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (835.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

logust-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (742.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

logust-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (586.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

logust-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

logust-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (567.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

logust-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

logust-0.2.0-cp314-cp314-win_amd64.whl (378.9 kB view details)

Uploaded CPython 3.14Windows x86-64

logust-0.2.0-cp314-cp314-win32.whl (365.2 kB view details)

Uploaded CPython 3.14Windows x86

logust-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (767.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

logust-0.2.0-cp314-cp314-musllinux_1_2_i686.whl (806.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

logust-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (834.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

logust-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (742.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

logust-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (561.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

logust-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (585.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

logust-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (690.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

logust-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (600.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

logust-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (565.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

logust-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (559.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

logust-0.2.0-cp314-cp314-macosx_26_0_x86_64.whl (519.0 kB view details)

Uploaded CPython 3.14macOS 26.0+ x86-64

logust-0.2.0-cp314-cp314-macosx_26_0_arm64.whl (507.2 kB view details)

Uploaded CPython 3.14macOS 26.0+ ARM64

logust-0.2.0-cp314-cp314-macosx_11_0_x86_64.whl (519.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

logust-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (507.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

logust-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (769.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

logust-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (807.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

logust-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (834.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

logust-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (742.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

logust-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (585.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

logust-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (693.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

logust-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (566.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

logust-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (559.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

logust-0.2.0-cp313-cp313-win_amd64.whl (379.9 kB view details)

Uploaded CPython 3.13Windows x86-64

logust-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (768.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

logust-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (807.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

logust-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (835.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

logust-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (742.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

logust-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (562.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

logust-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (587.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

logust-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

logust-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (601.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

logust-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (567.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

logust-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (559.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

logust-0.2.0-cp313-cp313-macosx_26_0_x86_64.whl (519.7 kB view details)

Uploaded CPython 3.13macOS 26.0+ x86-64

logust-0.2.0-cp313-cp313-macosx_26_0_arm64.whl (507.5 kB view details)

Uploaded CPython 3.13macOS 26.0+ ARM64

logust-0.2.0-cp313-cp313-macosx_11_0_x86_64.whl (519.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

logust-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (507.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

logust-0.2.0-cp312-cp312-win_amd64.whl (380.2 kB view details)

Uploaded CPython 3.12Windows x86-64

logust-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (768.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

logust-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (807.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

logust-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (835.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

logust-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (742.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

logust-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (562.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

logust-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (587.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

logust-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (693.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

logust-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (601.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

logust-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (567.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

logust-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

logust-0.2.0-cp312-cp312-macosx_26_0_x86_64.whl (520.1 kB view details)

Uploaded CPython 3.12macOS 26.0+ x86-64

logust-0.2.0-cp312-cp312-macosx_26_0_arm64.whl (507.4 kB view details)

Uploaded CPython 3.12macOS 26.0+ ARM64

logust-0.2.0-cp312-cp312-macosx_11_0_x86_64.whl (520.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

logust-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (507.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

logust-0.2.0-cp311-cp311-win_amd64.whl (381.0 kB view details)

Uploaded CPython 3.11Windows x86-64

logust-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (773.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

logust-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (810.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

logust-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (836.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

logust-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (746.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

logust-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (567.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

logust-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (588.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

logust-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

logust-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (604.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

logust-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (568.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

logust-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (564.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

logust-0.2.0-cp311-cp311-macosx_26_0_x86_64.whl (523.5 kB view details)

Uploaded CPython 3.11macOS 26.0+ x86-64

logust-0.2.0-cp311-cp311-macosx_26_0_arm64.whl (509.4 kB view details)

Uploaded CPython 3.11macOS 26.0+ ARM64

logust-0.2.0-cp311-cp311-macosx_11_0_x86_64.whl (523.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

logust-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (509.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

logust-0.2.0-cp310-cp310-win_amd64.whl (380.8 kB view details)

Uploaded CPython 3.10Windows x86-64

logust-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (773.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

logust-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (810.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

logust-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (836.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

logust-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (746.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

logust-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

logust-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (589.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

logust-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

logust-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (603.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

logust-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (568.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

logust-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (564.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file logust-0.2.0.tar.gz.

File metadata

  • Download URL: logust-0.2.0.tar.gz
  • Upload date:
  • Size: 95.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for logust-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0926341cea6df96b4e5f2299d8fafd8a5fa5ede0a56c0bd84f680c72592aaec7
MD5 0945208816dd6489ce6f020c01bb0479
BLAKE2b-256 2232fbaf0400f8288ccd643668e8b16ea475536cb60d961282232b0578fbd48c

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0a17fffc500eaf57c0f3af3f516f24d3f291ea046603eca9737b57c2caefb27
MD5 76b65cff3f57be1716e38fae527ec9b0
BLAKE2b-256 455f3625921df1b5b78b71db062578ec71b942a5a063221160b7b12d4a981110

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4afe7e882fbb7f07386b899e580c3255253c6d63806bc8c02da2063ff33a15c5
MD5 4de9dc2c636be8ba95763ec949b8f0db
BLAKE2b-256 a6f7ce3ff75a6c7395f61278ff0db143e9a73f3cac235319c32ee6a8efdbf0b8

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3f32949e19ca7646746ac5a7ea4502f854c555dba0f348c17a7c5301bf5ce3b
MD5 7f478dfecc52a9bc8bd7988f5453e8f3
BLAKE2b-256 bfee86a5010473f1e9d6200379a70094f8f52dbe899c97da319e61e80c6313bf

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd6d3e7a0abeb266534de688c5db2dc30d787bf0e6c8ca189f49c37038c0059a
MD5 191091bfe093c05a44c9bc487ea23b37
BLAKE2b-256 61ef740c0c6d46c87b63e619b5403f4aaa20d7ba1c14fe49d96c5c7d9f9c37d2

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fc0e56e5efb07b7eaa2f82d34a75769c078d5768279cfa0ea1f3dd410133b2d
MD5 b4aa0db224c138444929e4500931c51f
BLAKE2b-256 8fee3c30488fb89caf9811800e52319cf8efc61e35f0f375fcbc224610c757fb

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b289cae5a1e6b458e38bb2509f215acf5d408e44906cc5474a03a4e28638b6c
MD5 d12b3ad74bfb103084ca0893b1d32dbc
BLAKE2b-256 6ef0600b1453992733eea9d12a396f03f24082212a32699b233744cffab96849

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de884db82e53ebb3577196b5de3429e6cd75ca4632f0e9e053f99e66e12daad7
MD5 ca553153d4a0e7d144165945a47b1ea0
BLAKE2b-256 c0be5577200777fac263cb09a3ab1d3f6957c829a601a656e256c353c5ba9d11

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4a06b716f647d817b7eaa940769af5c9d245126d8fc63fea3e723fd933bde1d
MD5 eea555df0edb8b582b49ea21925270c5
BLAKE2b-256 784b34039053ede38fcacaf31a0516d283a4b289c0f8142792ab5aa0f4538dfb

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09a902b881f42d33c38d59a71b8d186a86a37c54942373b2f5b4e0544c67028f
MD5 9da642837caf349ce6ef1441abf15df0
BLAKE2b-256 c1ca235aa33e16015b3cc15bb9372b893ff5ddffcf3eb559ee251a4b0d37b774

See more details on using hashes here.

File details

Details for the file logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96f56a9dc55f85238a069b46ee7e093ff1a9da21a3ff76da27b5dd1c88967ccf
MD5 55915c152911ca550698ef15d7070b77
BLAKE2b-256 ef80748feb7db26f082bafb18a4c04ecf4894edc9811a398b090ce2999956f64

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9baaf098b08557fc4ed355a5f838430caf93305f286c3ec880040be8615d2de
MD5 7818bcaafe3a1433b2bf99daa701765d
BLAKE2b-256 81b025dbb787507c2fe009ff46d96632b2863268b06e5db4aa4b39ce42d75366

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8b9f4399c4ccf4caf9bae68a60471e4dbfd77a49041882a60a2831630c82b77
MD5 64d82940446d4cbf6fa30c2d47579e45
BLAKE2b-256 e4492dc051b426ba900ac65f7c2f5e74e3991d167bde10de4654e837a765a9c3

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a2fbab8c2101379b623a2ad85faa3bed8a309584fb543c9f133c72dc49e2576
MD5 5afa33f8c8b2fa26b6e74bc86a97c276
BLAKE2b-256 b241d2e18b01ee2fe3f009e7d079bc9f28d4c0227879a457934898065e0b2b0f

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 590938a996c87f70932358701e65c12d3df50f5859c2eec89bf8ea7359f57718
MD5 08f7da0f98e94bc95cd3387e1b8b06d7
BLAKE2b-256 c71e724bfe0094d28dceb0edc574b7a069d708b9f1aa7c156543a5e7de27a0a7

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af017154a2a82fd621bb8727668097e7f68bdbdd99de54b851035713b778e99e
MD5 6d9ba6c67bec13fe79e6776311256f4e
BLAKE2b-256 7aeab08f646e578104b6e7f3c83de118334a235abf034d299cb06dac81afe94a

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98ca0832587e343276bb42629c3726fd98b56ea886978088eca01d35eb23c9ae
MD5 9388deb7199236696d4a31d265df8803
BLAKE2b-256 c8b2f0f62da456f04b9bca6642244f1169561d252e27d2b055d29d9a542eef90

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 510e3e0553bfb125e680ee3e530d8cd6eaf495558e0fda1ec0d9a200684d886d
MD5 1707eb7821886fdb9e620b8d57b80b7d
BLAKE2b-256 160bb30499aaf44acf778ac7d277ac78822c5038cd8e81f352f42cc19037c0d8

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e434672500a4a9dbe9b392d6bb269038487612e55e41b0cdfc852cce088200c1
MD5 46f3af30913e9832bc013bfc8bef0133
BLAKE2b-256 4bf59f4ace8ed2ab0ca23a41f7a48031d0c9e542c12fd39c893998c26731a57e

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: logust-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 378.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for logust-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a9d812b9f072718d818b541625ea66f9705416ad92def868ef63149d1982a44e
MD5 9f3bca65b694ef412b4b460d6bee324b
BLAKE2b-256 11f27272d776d7262a7d73687afa8453ebf5bb1cf04927169612ce9865c8091a

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: logust-0.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 365.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for logust-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c8223a267a54eb2987003d6ec60d0100b41895434768651665db1fa8c6ad0e1e
MD5 042c4bae95ce59de6c8217aeca40a87e
BLAKE2b-256 fecac4aaabd72046fa0cb39da6c2adffbe630fe40819dfaa7a3946b7bdd72adb

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 048b4fef817734d2db1c0655cd022e9f696c3d157243c03490bb3d9143e6781e
MD5 2a1fab56a09a894e446a69f1ff0f96d7
BLAKE2b-256 e01e0335c420f13957ad8ab5461956a222880be12957e44ed61f30ace428c41f

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc8db1e63ad88846a456476e41e9a8d37a9f9b5f594b097a71df7ac578c3b391
MD5 4787358895a2f5c7431d0c063436f1dd
BLAKE2b-256 ff80185396b2ed5c4b493f6fb5c9225ec49a97628382a7d11f00175a29a88a52

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7cb51fd3a83f5012a2f0a56a217b0701eaa5b802e433dd13618581a27500ef4e
MD5 0e380d408961866c5feed1b5630ae3a9
BLAKE2b-256 fde00ced7752653f0890b24909e774e60ed868d02a44b1a6aec0d904e50cbc39

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ace66afa7e12fc8a3c587aaffe7d7da57445934565741fcec381c70357dc869d
MD5 d46753c4d1a98deeabd857c182d50acb
BLAKE2b-256 9a288ed8d7022c268c1ef5e8b6c8706b61a5556441b632ddfea62b09ad5ae8b1

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdb148df62b1e582f1b4d0693eeb344e7f48c0f7abd4f6a8c204d6e12da93494
MD5 56b24a251a4e055a23d05d1087f1e4cb
BLAKE2b-256 ba5c186d74b974538cb49961cb4d2aa74e697965dbd3447f918e9b3532473d4e

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bada9f79741ae3c533c7882d94b82ef522bd9d36bc2402de4146141136fc83f6
MD5 2f7c50277212ff4c0ffcc2a261c992aa
BLAKE2b-256 e8dc942aed84b8a9cc66363c4aac443efa4c12ec12d8373c8c96341225b9e8f9

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae96bf4ef5f948ae894705239046a91cfc7e35c04fc1cf0d089bcf2bc8de3bf3
MD5 d77dfba494e686b4704c9525d245089c
BLAKE2b-256 ac5e942eecea2b6b1937c7e49a8da287c9b07271dfac5ac41318312abad75428

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc92a43628dd8a0d5b51771d11aff01dc15b7ac91e2481b5ec0d770ef372cecc
MD5 768c854430af2f324ad9c20790a6b593
BLAKE2b-256 0a29a3978f9aa21ae80e312f4d791aa102dead140c25c3850939ffd2fae8e6b3

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 893170eb060e4779d2b99a9066ad93608580ee626d28622beed33d00d4093815
MD5 e1eacb53b66792ef9ab727ff7ea28780
BLAKE2b-256 beea053bdb5bf88a7da5653fc76306248cc81a4a0cce2c86596cdbc5fe783baf

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c3efc741e3e00d494a209616ecab6511564dc5a2c68dfd1ddf007b44ae078c8
MD5 94e357abafd30a6d13c5e3997f770dc3
BLAKE2b-256 1c883deebc29960dca1159f9f2391a5a7883d68d0acb8af60e67adf0ee40ca6c

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-macosx_26_0_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-macosx_26_0_x86_64.whl
Algorithm Hash digest
SHA256 812dae0fceca1bdae2d9c785d31bdac7598b543fef0f2d7ee579d65bb860bec1
MD5 b7b14aacde8d35115899721e8f731553
BLAKE2b-256 c285d58b50adb41787fbb7e6eeb29ddfb670c611b066b43759f56ea0d22083f6

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 2a74d444b316d6453a5ff4bc45c442682f557c282d352a0b78c44563f4136b18
MD5 c2b4bdee4b72caf17fb53bfae48620b2
BLAKE2b-256 560952c8fdd399ff124c006697fdcedbd0248c3682ea8dc07d8efb28aefd8357

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8b1e81be310966a189049d1d14e5ddbd9a47fdd40407173c5921718aabe8b0bd
MD5 75683ed96c42aa5ab8c3dd606dcbdfb9
BLAKE2b-256 8f90e60d5b2ea3224119032217428eaa3122e0f58cf343e9bce8244cb91544f5

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5cdb2d1d944eb4c9c3130864b4f2c7e289b03aa2f0cf7d6a42284fc3865d4bf
MD5 5984f8ce0765af12af9d2fe8029116b9
BLAKE2b-256 a140b45d7c7497874b37def20fdd0aa979701dca239b3d24d5f6d6d0f1c5e5f0

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ca93851ed911b4e9ea794bb0f2f4bf7e1e5f8b9fc9b9a0da400baac07495ab0
MD5 2aff89926602d0e1826364c40e86fe96
BLAKE2b-256 15a3cd1fdba08af9933e8336847909b84969d5ee8f22b0189151e69fa3a0bd4e

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55fbc3c052534e4edd08589b2406888f466128bb45a3248a9a8516a71f7520d4
MD5 d7bb7500af17efcb5529ef41e62fea51
BLAKE2b-256 ec16550b99a4658aa1fd6812d639215debea1fa67d2a5ca4b2318d9306f2cf0e

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3ad8ca84c25f52b92c8e8aa0f4ed48bd0685ff2c5220bef01d5a7631ad7ae41
MD5 7b91e312815df392081924528f831250
BLAKE2b-256 6ae14301933bb0dcc961c1738738dfe197aa539468ec461ec991dfaeced31a40

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 822f5ffb0f759cd7813b4c4750f1edc3b08257697d443fb2b86ee8374220fca4
MD5 59975923cfa3abe48f8f542fd858bdc6
BLAKE2b-256 27c3ce0dc4f3244258a4f6aff85f72c17045f8508b0fadfaf05419f137f14a17

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bbf9cb78733155c147053f63bc70f4143fbb570220258d66580008e31e8e448a
MD5 7a7b6b146fde3fee7ec3ed94b5cd1b88
BLAKE2b-256 050801df0ab42a0b4770eb8321e6351c4b9b5d32344f8b43906e1c998fac4365

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53bcceeb7b94fc8ea3d50718a6b55e15ec616b22aee6ea853c609f202aafd32e
MD5 161167472e9520e41bfa1f6feb0e8929
BLAKE2b-256 015510e7dd534d7febaeb885df256f5fdd576ba0e3f4e777dd480ffe74128914

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ed2a28338395945a5dfbf552fda506f7793f094055ea03e52e2bf8558beff2d
MD5 e97c118fc0e3efd6d9cbbf96f5619e10
BLAKE2b-256 98effbf0b383a7fd7ab18db0473ce2015e899fa73b9f1f4f8c6773fae8752084

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 836a1aa3f3477cf5bd40e6a56bd56e6ad858bbb010b5c1b30a96fdee91043b06
MD5 315ef49fcded18d05f575787bf79701d
BLAKE2b-256 ecd743e88dec0f4d249b62b819e209ba19529ee59ad599184623f3d23fdde868

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: logust-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 379.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for logust-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb7570f75babe9d22e763dbcdde12188aeb14f97ef3392a57efaff9563a4d6ea
MD5 01282035871a98876f2b1568efc492b9
BLAKE2b-256 d40102cf1e2f2491e8b1881a586eeaf828b4b5298ab92fb8cacb89fd7834ac92

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2adaeb3178410081f8423e1df333563988161604e375e597d2b30f46baef5f8
MD5 e52a3012cb33c31fe86471898143f4a6
BLAKE2b-256 5abbc5952cc04520bcd001cf3aca0a5c6792422b97dda0d520ce9ffc7c88b518

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 969d08b6a732d910fcfee1e67efdb407a4722870cd01d38eb1c44bf193234854
MD5 5db072e45125342d721f090093758a66
BLAKE2b-256 594488e0ca825f2e9d783e5e873117e4dd3d3edc83619c6cfcb71f526c976532

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0912db0b3f450b4885f5a17b86eb96589e25376ce27dbdb7cb36b19590bc355
MD5 2ca68c5f6a70165db92f56a693f8646d
BLAKE2b-256 09fcc8f90344782ac1e7f11eccf0112e9ea0f1ff905c3da74a134818ffdc78ff

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41cb6a1d99c4bb62bc8f66c1b0b5a89af3cfaa2fffd0e8315c97e7876375ddff
MD5 a5fdd093112af4fb76036dcab55696f8
BLAKE2b-256 8f2c7a1ffe2e45874157089f95d8acfbd2bac1b633ac4a9db084f3de7cd727ff

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70bbc05d8355eb151a8d954be7e8919cd0128459d7edf5fdb6b95efec49f9cf7
MD5 9e9cd6f0149856bf04d104a980501577
BLAKE2b-256 adf5c261d6cf411943245146225493f58dde921e2fcacdf26524f630e443b470

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 991e9f7812cb076435fa1d8b1e11697b606a2cce535f42980db17748cd9f8db1
MD5 ef1d95ee4ad553a94626a9eb0ae8046d
BLAKE2b-256 c0986f7b1c4a63bfb186f6684215da495c96f91894b37edf01e659f93f3a37b5

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5acda4aee2b8d6305c3dc71d4fb94c5dcee996cfe183ee0e832f1e118f848460
MD5 7aae8396f1718742e69fef6c63ce5e44
BLAKE2b-256 2ff9d0f6f2f1af18723d4a787b2059cf7ae41b4641005e56dae7cae7a8d87d5b

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e2ff3250460d6c1cf20b589e46a6d36d468b9e30e1ae9cda41f3975dbc9fbba
MD5 b228ea007eb742ae472cf1d5f797b42b
BLAKE2b-256 c4ce04d617ba2451f7c3007a15cc1427787a163bd7b2814c003873ab88928345

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8fddb758508d382baa0c7a796b785758fa6f4bac797e121baa05669d1bcf61c6
MD5 dd7426d5e4dad8238015d243577528b6
BLAKE2b-256 8a232d2adbc636fa684585e3a54408ecd61c6d648bb8f7ded0fb0d0d0b50cd44

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83fb01b20b04c5b7b7f8eca6c3280a5eda26c96e214a1862af9bb2c7914ed1ba
MD5 1d96f3291d984227b5ec7a810639d58d
BLAKE2b-256 6bb77ab3b4f749679fa3c53e4fb957ceb278919ff538dee6d11a94e10394a188

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-macosx_26_0_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-macosx_26_0_x86_64.whl
Algorithm Hash digest
SHA256 90db21e6882f61cbac2b07211330d28d0da7a3150c519024936ee8e6937775af
MD5 45aad694808f603d33915be42ec0ccaf
BLAKE2b-256 e65ad262d712c16e8537fba1ef569089f60149b903dd0dcaafec1bcd98f24e65

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 1e32089d8bf2422c430a52304420ba7cddfb35b4c53c793a349103dfe3f71ed4
MD5 7f81a0de7f2a6f46e1cab4748ed62ac3
BLAKE2b-256 b277dcf5adc55261cefe7da7538457353f5da06bb9b73a2d1c9fcd18db60595d

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6cddee0fdd311ccf29ace85e5b024f5f1d4010918e98ed92d0d186b1c0c9acce
MD5 d1a8ff94541767795b1c6d885b129e63
BLAKE2b-256 13d2268a5ece4c7dd639505162ba0de8cc7dc4baa960d0903d978b4abc913e34

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 931c8e4f5148dca4657dbaf3b88deac7b6606b068aa7cc2c31ac971c6996ed77
MD5 58b8b5c603d76b73a53c3ffb6e116c73
BLAKE2b-256 27c36802e4090ce5d9d95238d1e4e9fbf772a73a4423232013bb4c7ce3661ba0

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: logust-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 380.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for logust-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9d964fece5c7d25931d3ee7ad43e98f4cf1d9baf5b45206c80194c402e422240
MD5 8e69fc10d059419cbf185552c8d9a943
BLAKE2b-256 5dc0716d7ad2a0c78ff55a9313c52d40cf098379a6467fc249e4fc8a2cad87e4

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b08294d61d57614b6bfd4bc9790696d3cbbbd57673ae48c7d660f7782253e212
MD5 86e6b2f1a70c792bdf234b413ad69355
BLAKE2b-256 a3735b147778c17324ccfb82bb49743ad5f615c93ab0b41c9c6928139b31f7d9

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 907a8d12f90ff3cd939cde9a9d45241d5a78529fc1ecd870a2b8e979328daee1
MD5 6d8545754535c2f51354bcd22200488b
BLAKE2b-256 cb7994432a2b0c91c7c9b24581568fdd57112d9a92076009a634e8c242f4e815

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e76b52cfac4364854e209d2be59c48d2a1b56fd048133a66ff2ab2e5d0cd23e7
MD5 b9cb77c0a3b4cdd03cad3dfbb3510cfe
BLAKE2b-256 0432ff5c15588d726bb5c181705d1be0012967f3d88b794c1455764ab0844169

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c1d52cd6cd1d94f366702b4449d21f11f4a7619561a536c7f4282290c2c0cf3
MD5 be0d7f271e0756149ed6e01c5074bf2d
BLAKE2b-256 17e3c7bf2e54f6a7351ce812cd8e044032de29b8b559db4307d9d71b0b6cd67b

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b78bc0e6eca4f7d2170424233aca704c4aa138f28364df385dd7ce1583fbe0dd
MD5 464fa05dd4f448d17bc846597e113f44
BLAKE2b-256 8df03a60fd80a66ee5842e2d382cdf24c8268ac3be82c3e54e61798e2d692354

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d255df57af2ede7ab5f52246bda031a734696cf2715c412ef9fd6b782116256
MD5 546946704875084ca1301c7226ad21d5
BLAKE2b-256 0d1249d12d7a4bc509b0f9a718b8abbdaacabb791b6141624e5bdb301a282f54

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42ee9e4603099bdf378fc943d664c87faf561ab7b2a99a89b6ae4f09a5ce9e10
MD5 36e125308434809a673b6b52083a9c82
BLAKE2b-256 d14a755fa9c2f1cff40b8782c9c481a33be27e3567159a6b28c53b740227d90b

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d22af58337ba75a8010d12adb0677eb44c95fce0313df27e595887a6d56af948
MD5 c1c666a01e34a7728d8c8367df261d67
BLAKE2b-256 40c8fdf321c7fd8f3189aa56dceb3beae686a4a8e7f41cbda9c2cc12f83a547d

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 263dcf26e88db9548e42c139a4053b9fe8f32862c31d269156d1ac494ad6af54
MD5 18f2dced7e50b6c8fca13cce3189452d
BLAKE2b-256 5b0ec3268303e0404de55e11763ab0f41add600651415573f2344ea4e8b90986

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac78e2f150b3fbff0accda8dd75850b8227770e6f0c7eec6a7d2217ba06d3c7e
MD5 965610e4867c42d483c81ff5f99c9df1
BLAKE2b-256 f1d9ea33b646d0ae47a4b63f2184e3cfacb883ebcb6fbbbe517510f0c04c5d77

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-macosx_26_0_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-macosx_26_0_x86_64.whl
Algorithm Hash digest
SHA256 6344f5028e91702dc4dd38b75bb623be4eb4eb9c1157639dae477897fa61a27c
MD5 3780981b99c048fc4007afac7507d3b3
BLAKE2b-256 9d6ca2728fe81ea2691bb6f33786e9221235b0f75c3e2434c500ddc4b44b0e0a

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 8beba2e1a417de69392bea1b9c5f5c7e389c73e4bc0314ce01100dccebbfdbaa
MD5 5683a072ee132ad6210d12c57b499ef8
BLAKE2b-256 7d09006b712c8a2a40bcc74506f279ce31615e88510465a42893e2a2a4da7d0c

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d3600a8b7f0cf72b35996042244870a963108601a444ea1778457a0ba0b5bc5f
MD5 df5fdc654e02274a1d53d6752d82076c
BLAKE2b-256 e50041b4912563c240490da16ba1260566691572a803b747ead30598df1f07e4

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6854b335fb76a8ef711d91b2ceefeb7ceebd009c737706411524398c982686c0
MD5 2a28d54bef63f248dd1c1d181d31b15a
BLAKE2b-256 79545053fadc38e6d7bef0c180ed44f2e2cb82bb17465d232b13ede867f604b7

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: logust-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 381.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for logust-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 600959a21215f1d47061b01671cd77e040a6889929c3656b50216a2a7466c668
MD5 77aaf75b35fd89a6f8f027b84ec3fc86
BLAKE2b-256 6ba41bfb524df14692d4d2036ea91c3a0e634c7ad814fe9f34b43c0f153c8850

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7fb8181c4e6d1fd75b887eb8e87978514232d78c54d99484c2cf98764bf69f7
MD5 cb0a7fae9c53eb9375b1edf5ab177f1f
BLAKE2b-256 cf120b87f7182f1a1b93b7836c6d29e100b5133c3a6c6b6c9c546aeeea130522

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fe7b96545d33f7aa1f6084347307bd793bc008074511ee3084f2d8cc9512c44
MD5 3133609ab76b019a11da8f9fbfcce54c
BLAKE2b-256 8a13670dd0077eb22b91174467d873a2fd4e91433dcf5c17393de193bcdf17f4

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1385a881d56c5c8b6a9dcb7b7634ab7ce673c8cd11562a004f8493b0f16c703c
MD5 daaab6157910e972244b8b47c6b7790c
BLAKE2b-256 b94b9e07e2e835497e81b704ce440671b63aeebdf466a300e0653621ef8ee047

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efd2ce3c2f28e2aa68a0344235850718a30a21985a1a37ff34efe982d67e9e78
MD5 64d206e45f3511d77ee7ece544dc797a
BLAKE2b-256 130602d26fbcb858049c04e5a7b61e90f46b00533f8ddd0a48aa79a7481a3fbc

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1a9b8700615780cba3bfd851339aa67a8611857ba770efba9df5d18f2cbdf39
MD5 d52096b78a65b44a8f8830ba8287701c
BLAKE2b-256 5637469d1fe2a72a09ccab1ee4ae98a742656dfd67b078ad49985f1e18cc0c3c

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98389bf60527c342ebd697b7203be072c068c815ae889e0c90146b5271fbb998
MD5 946230f3b866b3abc0600fc03920f205
BLAKE2b-256 f064b828c04b533ebf9520cf7d9d4cd0552dd2442d96b4a4e0289aa2b213960d

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac18e28fc421e8f17b0b37a032931c14fa00b9b03531ce5d3dda07afbde2e81e
MD5 58f584874895d4078ce0ca4e10c81081
BLAKE2b-256 b42cde036090c81b893b4a1e632dbb143c35fb777274b0e3692d0476d1d98efa

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac4ff2bfc7abb1c2f42c70fb2620df73a9432311d4697e1c31945c9401240bf5
MD5 4fc00012465d17bb43a5d1e72f59cd99
BLAKE2b-256 f649c4c1cb519b064e8948cc8aa2335e9be31820642421290a2c512c68a69970

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e5c95fd5977c85ea23290fc961886ade0413916b60620d30bac310d0dde8c2e
MD5 6b9ece0411f1575f25eca24cb3495f08
BLAKE2b-256 bbaaf4f292b761343f1809258c1a00e044e07215539a5b17abe8bd45e6f6d14e

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85a34733baa74f0c021912ea2869cd6d39e73884fc8eb707de2334d8f6e90075
MD5 af65b17e1f9d489845cbf6763bbedcfd
BLAKE2b-256 dfbac4487dec297cb9180a7c1b28b443d7c5dbaf04e46b2dbb31de80f2073681

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-macosx_26_0_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-macosx_26_0_x86_64.whl
Algorithm Hash digest
SHA256 e06d951d97be007d3b89fe2f6a7adf9e3207ae6da3ed7fd0d236370e4694fe2e
MD5 4fd7661cfd6e75d7a0cd2c7d2ad4d187
BLAKE2b-256 e32292b8ebeee81300a1704db70253284a360373c2a9fa8cfd3b809f5eaf2a75

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 3e70b05283f54d17e61b41e919d5571f5984f30223a0ce3e953fa2e77f0762d5
MD5 f8fc4acc4f5db79b990a3a22e7fadf69
BLAKE2b-256 260afb040992b9d295cb2205fcc2104ab248de442eea3394a5de291b3990271e

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e45ef69d2c26f997bb7800bc18c82240a2bef08483dbb0237b5995b1686a59ed
MD5 6292ca49ec2c59b4f2a794641479dac5
BLAKE2b-256 b922ee290c3eb043f7c0fe4a933578f37bab6de998fe742e3da15c794313e640

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef357e0b678512928c571d37d0494c384747315eb600c2346890cfaad7dc62d8
MD5 b27f6d963e1acefee8263c25b1109d34
BLAKE2b-256 86cd235039d7cbc60c000c55cb72b396cefbb81ed4ae6c19d98389ef5893436d

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: logust-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 380.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for logust-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5efe08e0dbeddc966ff4e84ed63f7002687459f8396741d5159d42255abb4de3
MD5 f811cf9523da4c1a0ce161b70e28cf13
BLAKE2b-256 922b935dc8b023453b53ef2dc30a2d279185142d4d0600048e7908de0dccd839

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fd1f5b4aab7f2b569bec9574f5011dbc354a7ebfbaf2e512e150f9401be36b5
MD5 4f62e73661c5a0058a46a986c01c24ad
BLAKE2b-256 961ac365c88fece457f928563ee00d4810450a5e2a5f64db7075849639b07130

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6996d6a5dcb6f0f3bdcd83bd5d27c9a54bb6ddc39242f415b053b3c41919a4bb
MD5 251d76ed2a94412751a9ba7f56468ad6
BLAKE2b-256 09cd2e20ff9384a5b1b158a79574b7ba9e1ff607b9c8e3e7c6dcc94a0e48fa4a

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb721fc487b5399ed36f1f8e34d38b1224c94498b472932b89c434b4db6b7d97
MD5 ca3cf6777d8dd64b946f4332b163aac6
BLAKE2b-256 79343d40879262731b7f2b911082fd732e78ed9144a2b0388e8eeed7a130b997

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16afe18340d89dc01c2a5b2f78ec767800d81f40eec742fd7c2444c3f42767b6
MD5 d333509638d505b9ff1682f57c0c1fa4
BLAKE2b-256 7b9870752efeae268e3299b1d97a182070ace706338c1be4ab66726b1dda1507

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 065c53d1c30a716d17d845584874ab1578859c9543ae866b930db61bf0bdd54f
MD5 f40d2e521f8dd91511f484a9e8e491d6
BLAKE2b-256 404727d130722a26604004c5e88388124d68ed10e1199b417892ddac6dcd1532

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3ce4f4e4d785cc925f3add00fe1dd717718a0252905fe314616f21a939befde
MD5 5709a333c50a5af4a42ec5a34c674592
BLAKE2b-256 15567e34ca9f850c2729f954ffff62f913dfaca94e16a80d18acdc43296f774f

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e32877a8c8ca37f9a7a7fb6c435025022720bac71bece0e7f9356d86ad7b863
MD5 8a993949f12776a64e56662c133d84ac
BLAKE2b-256 4a63c52a3ca70de85bf7810d0eafb8eb0c7021841f3fadf1f33b38077a7d4bbd

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b74372c6438ee97402440654594c8fdac447aaa9e6e5918dacd8cb26db3de453
MD5 26526639e1b125e04f582b62ae18ba0f
BLAKE2b-256 4de02c0ed54731d4f4f4c6668f5ef983c91d2a54842a41e8203a3e72073f7d3a

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d060a3e856850fd2a753fa49d0a5e5c243c463d10ec73e1c170a88639e253305
MD5 7b8dcb499f088e4137365b734d66b95e
BLAKE2b-256 775f5d9e7f4139b78263ca019dd8d3fc961a85c0b906beecff120c3bb2060a45

See more details on using hashes here.

File details

Details for the file logust-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for logust-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 197018147cd8995931abfbb9bf7b39026bb163e2d19e5dc1cabf7f9075411ea1
MD5 5c8ad6bb9eed5df3fe90bb86189428b9
BLAKE2b-256 f647289813d363795e537aa32f24da9b55da7a5304020ffa477e9d4bf11b4285

See more details on using hashes here.

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