Skip to main content

Persistent in-process execution engine for uv — internal dependency of omnipkg

Project description

uv-ffi

Persistent in-process execution engine for uv's package resolver and installer.

While uv is designed as a world-class CLI tool, uv-ffi re-architects its core as a resident engine. By keeping a Tokio runtime, HTTP connection pools, site-packages metadata, and interpreter state warm in memory across calls, it achieves execution speeds limited only by filesystem I/O.

Used internally by omnipkg, but directly callable from any long-lived Python process.


Installation

Standard platforms

pip install uv-ffi

Covers Linux x86_64/aarch64, macOS universal2 (arm64+x86_64), Windows amd64/arm64 — all via ABI3 wheels (Python ≥ 3.8). macOS users wanting native-only wheels (smaller download, no Rosetta overhead) can use the extra-index-url above.

Exotic platforms (musl Alpine, armv7, riscv64, s390x, ppc64le, free-threaded CPython 3.13t, PyPy, GraalPy, Windows x86)

pip install uv-ffi --extra-index-url https://exotic-wheels.github.io/

Browse all wheels — PyPI wheels + 600+ additional wheels hosted on GitHub Releases

600+ wheels hosted on GitHub Releases, indexed at the URL above. These were removed from PyPI to stay under the 10 GB storage limit.

Build from source (requires Rust toolchain)

pip install uv-ffi --no-binary uv-ffi

Build from source for cp37

pip install uv-ffi --config-settings \"cargo-extra-args=--no-default-features\"

If the Rust build fails, pre-built wheels for your platform are almost certainly available via the extra-index-url above.


Usage

from uv_ffi import run, invalidate_site_packages_cache, patch_site_packages_cache, get_site_packages_cache, clear_registry_cache

PY = '/path/to/your/python'
BASE = f'pip install --python {PY}'  # LinkMode::Symlink);  // ← by default

# First call initializes the engine (~65-75ms, one-time cost)
rc, installed, removed, warnings = run(f'{BASE} rich==14.3.2')

# Subsequent calls use the warm engine (~5-6ms)
rc, installed, removed, warnings = run(f'{BASE} rich==14.3.3')
# -> installed=[('rich', '14.3.3')] removed=[('rich', '14.3.2')]

# Inspect engine's current in-memory view of the environment
state = get_site_packages_cache()
# ->[('rich', '14.3.3'), ('requests', '2.31.0'), ...]

The key is keeping the import alive in a long-lived process. Each new Python subprocess pays ~70ms (interpreter startup + engine init). In a warm daemon worker, the same operation costs ~6ms.


Performance

Measured wall-clock time on Linux (NVMe SSD, Python 3.11, pre-warmed uv cache).

No-op (package already satisfied)

Method Wall time user sys
uv pip install (subprocess) ~11–12ms 0.007s 0.006s
uv-ffi in-process (warm engine) ~0.4–2ms 0.000s 0.000s
Speedup ~6–8×

Real swap (uninstall + reinstall different version)

Method Wall time user sys
uv pip install (subprocess) ~17–20ms 0.010s 0.013s
uv-ffi in-process (warm engine) ~5.4–6.5ms 0.000s 0.002s
Speedup ~2.5–3×

Cache operations

Method Latency Notes
uv full site-packages rescan ~2.5ms paid on every CLI invocation
invalidate_site_packages_cache() ~2.5ms forced rescan, same cost as uv
patch_site_packages_cache(installed, removed) ~25µs ~100× faster than full rescan
Post-install cache update (internal) 0.0ms zero-disk: built from resolver changelog

The ~5–6ms floor on a real swap is the hardware limit — VFS symlink create/unlink on NVMe. uv-ffi eliminates all software overhead above that floor.

Important: calling uv-ffi via a new subprocess each time (~73ms avg) is slower than calling uv directly (~19ms). The gains only materialize when the engine stays warm across multiple calls in the same process.


API

run(cmd: str) -> (int, list[tuple[str,str]], list[tuple[str,str]])

Execute a uv command in-process. Returns (exit_code, installed, removed) where installed/removed are lists of (name, version) tuples.

rc, installed, removed, err = run('pip install --python /usr/bin/python3 rich==14.3.3')

Supports all flags omnipkg uses on the fast path: --python, --link-mode, --target, --index-url, --extra-index-url, --reinstall, -q. Any unrecognized flag falls back to the full clap parse path automatically.

get_site_packages_cache() -> list[tuple[str, str]]

Returns the engine's current in-memory view of the environment as [(name, version), ...]. Returns an empty list if the cache has not been populated yet (before first install call). Zero disk I/O.

state = get_site_packages_cache()
#[('rich', '14.3.3'), ('requests', '2.31.0'), ...]

invalidate_site_packages_cache()

Forces a full disk rescan on the next install call. Use when an external tool has modified the environment and you don't have the changelog. Cost: ~2.5ms on next call.

patch_site_packages_cache(installed, removed)

Surgically update the in-memory cache with a known delta. ~100× faster than a full rescan. Returns True if the cache was live and patched, False if no cache was active.

patch_site_packages_cache(
    installed=[['rich', '14.3.3']],
    removed=[['rich', '14.3.2']],
)

clear_registry_cache()

Drops the persistent RegistryClient memory cache. Use this if you suspect the internal PyPI Simple API cache is stale. Note: The engine already auto-heals on install failures, so manual invocation is rarely needed.

C ABI: omnipkg_uv_run_c

int omnipkg_uv_run_c(const char *cmd, char *out_json, int max_out);

Runs a uv command and writes a JSON changelog to out_json:

{"installed":[["rich","14.3.3"]],"removed":[["rich","14.3.2"]]}

Returns the exit code. Safe to call from Go, C++, Rust, or any language with C FFI.


Isolated "Bubble" Installs (--target)

uv-ffi provides cache-safe isolated directory installs via --target. Standard uv evaluates --target against the host interpreter's installed packages, which can produce incorrect results and poisons in-memory state. uv-ffi routes --target installs through a pre-warmed BUBBLE_ENVIRONMENT:

  • The resolver sees a clean slate — no existing packages, no cross-contamination
  • SITE_PACKAGES_CACHE (which reflects main env state) is never read or written during a bubble install
  • The BUBBLE_INSTALL atomic flag ensures the main env cache is fully protected for the duration
  • After the install, the flag is reset and the next main-env call proceeds normally
# Install into isolated dir — main env cache untouched
rc, installed, _ = run(f'pip install --python {PY} --target /tmp/app_env flask==3.0.0')

This is how omnipkg generates multiversion isolated environments entirely in-memory.


Cache Coherency

If uv-ffi is the only thing modifying the environment, no action is needed. After every install, the cache is updated directly from the resolver's in-memory changelog at zero disk I/O cost — it's always coherent with no overhead.

For environments shared with external tools, uv-ffi now auto-heals on detection:

Auto-heal (built-in, no configuration) When uv-ffi detects that its in-memory cache references a dist-info path that no longer exists on disk, it automatically forces a full rescan and retries the install transparently. The caller always gets a correct result.

Verified behavior after external version change:

[1] uv-ffi installs rich==13.9.4:          4.93ms  ← cache warm, correct
[2] external uv installs rich==13.9.3:     ~18ms   ← cache now stale
[3] uv-ffi asked for rich==14.0.0:         7.60ms  ← auto-healed, correct
    (0.5ms failed attempt + 1.6ms rescan + 5.5ms uninstall/install)

True overhead of auto-heal vs normal swap: +2.67ms (one failed attempt + one disk rescan). This is paid only when an external tool has modified the environment since the last uv-ffi call.

For zero-overhead coherency, bypass the heal entirely with a proactive delta patch:

Option A — FS watcher + delta patch (omnipkg's approach, zero heal cost) Watch site-packages for filesystem events. On each change, call patch_site_packages_cache(installed, removed). Cost: ~25µs per patch. Cache never goes stale, auto-heal never triggers.

Option B — Force rescan Call invalidate_site_packages_cache() before any call where external modification is possible. Cost: ~1.6ms on next call. Same rescan cost as auto-heal but paid upfront rather than on failure.


Architecture

Python API  →  run() / patch_site_packages_cache() / get_site_packages_cache()
C ABI       →  omnipkg_uv_run_c() → JSON changelog
Fast path   →  try_parse_ffi_install() → run_pip_install_direct() [bypasses clap entirely]
Slow path   →  clap parse → uv::run() [pip freeze, uninstall, etc.]
Globals     →  ENGINE / BUBBLE_ENVIRONMENT / SITE_PACKAGES_CACHE / REGISTRY_CLIENT / PYTHON_ENVIRONMENT

Persistent UvEngine singleton Interpreter discovery, platform tagging, cache init, and TLS pool setup happen once at import time and are held in a OnceLock. All subsequent calls skip directly to resolution. Includes a pre-warmed BUBBLE_ENVIRONMENT for --target installs.

Zero-clap fast path pip install commands are parsed directly via try_parse_ffi_install() — a hand-written token parser covering all flags omnipkg uses. Internal Rust structs are constructed directly, skipping clap entirely (~2ms saved per call). Unrecognized flags fall back to clap automatically.

Persistent RegistryClient and PythonEnvironment The HTTP client (TLS pools, connection pools) and Python environment (interpreter metadata, marker environment) are stored as global singletons after first use. Subsequent calls reuse them directly — no socket teardown, no filesystem search.

PyPI Registry Auto-Healing The FFI engine keeps PyPI API responses in RAM for maximum speed. If a newly published package version is requested and not found in the RAM cache, the engine detects the internal failure, automatically drops its registry cache, and retries the network fetch transparently. You never need to restart the process to see newly published packages.

Zero-disk post-install cache update After a successful install, SITE_PACKAGES_CACHE is updated directly from the resolver's changelog using in-memory InstalledRegistryDist construction. No dist-info directory scan, no try_from_path I/O. Post-install cache update cost: 0.0ms.

SitePackages::add_dist() A new method added to uv-installer's SitePackages that surgically inserts a distribution into the in-memory index without touching disk. Used by both the post-install zero-disk update and patch_site_packages_cache().

Idempotent initialization Logging setup (setup_logging) and miette::set_hook are now called with let _ = — safe to call repeatedly in a long-running process without double-init panics.

Persistent Tokio runtime The main() path previously created a new Tokio runtime on every call and called shutdown_background() on exit (leaving pending HTTP requests). The runtime is now stored in a OnceLock and reused across calls — no teardown overhead, no leaked requests.


Profiling

Set UV_FFI_PROFILE=1 to enable millisecond-precision phase tracing:

[UV-PROFILE] cache-reused: 0.12ms[UV-PROFILE] post-site-packages-scan: 0.08ms (cached)
[UV-PROFILE] post-settings-resolve: 0.31ms
[UV-PROFILE] post-execute-plan: 4.82ms
[UV-PROFILE] post-changelog-from-local: 4.83ms
[UV-PROFILE] post-changelog-write: 4.91ms[UV-SYNC] Zero-disk cache update: done
[UV-PROFILE] post-explicit-drop: 0.02ms
[UV-PROFILE] post-await: 5.14ms

Coexistence with vanilla uv

uv-ffi installs are fully compatible with vanilla uv operations in the same environment. uv-ffi writes complete dist-info including RECORD, INSTALLER, and REQUESTED — so uv pip uninstall, uv pip install, and other standard toolchain operations work correctly on packages uv-ffi installed.

Coexistence means no corruption, not automatic cache synchronization — see cache coherency section above.


Platform Support

Platform Architectures Python Index
Linux glibc ≥ 2.17 x86_64, aarch64 3.8–3.14 PyPI + Extra
Linux glibc ≥ 2.17 i686, armv7, ppc64le, s390x 3.8–3.14 Extra only
Linux glibc ≥ 2.31 riscv64 3.8–3.14 Extra only
Linux musl ≥ 1.2 x86_64, aarch64 3.8–3.14 PyPI + Extra
Linux musl ≥ 1.2 armv7, i686, ppc64le 3.8–3.14 Extra only
macOS (universal2) x86_64 + arm64 3.8–3.14 PyPI + Extra
Windows x64 / ARM64 amd64, aarch64 3.8–3.14 PyPI + Extra
Windows x86 i686 3.8–3.14 Extra only
CPython 3.13t (free-threaded) x86_64, aarch64 3.13t Extra only
PyPy 3.9/3.10 x86_64 3.9–3.10 Extra only
GraalPy x86_64 Extra only

Version Correspondence

uv-ffi versions track the upstream uv release they are built against.

uv-ffi uv upstream Notes
0.10.8 0.10.8 Initial release
0.10.8.post1 0.10.8 Persistent UvEngine, delta cache patching, zero-clap fast path, verified uv coexistence
0.10.8.post2 0.10.8 Windows cache path fix (%LOCALAPPDATA%), platform-safe temp dir fallback
0.10.8.post3 0.10.8 Windows ARM64 wheels, Tokio PathError fix on Windows runners
0.10.8.post4 0.10.8 Bubble environments (--target isolation), persistent RegistryClient + PythonEnvironment, zero-disk post-install cache update, JSON C ABI
0.10.8.post5 0.10.8 CI hardening, per-platform PyPI checks, sdist publishing, Windows PowerShell fixes
0.10.8.post6 0.10.8 Auto-healing PyPI registry cache, detailed FFI error messages (4-tuple return), clear_registry_cache()
0.10.8.post7 0.10.8 ABI3 wheels (one wheel per arch, Python ≥ 3.8), split PyPI/GitHub Releases distribution, GH Pages index
0.10.8.post8 0.10.8 Auto-healing site-packages cache (detects stale dist-info, rescans, retries transparently)

Benchmark Methodology

  • In-process tests: 10-run alternating swap (rich==14.3.2rich==14.3.3) in a single warm Python session
  • Subprocess tests: 8 separate subprocess.run calls, new Python process each time
  • Interference test: uv subprocess between uv-ffi calls, 1s settle time
  • uv cache pre-warmed before all runs
  • Hardware: Linux, NVMe Gen4, Python 3.11.14

Attribution

This crate links against uv source code from astral-sh/uv, copyright Astral Software Inc., used under the MIT License. See NOTICE for full attribution.

Not affiliated with, endorsed by, or sponsored by Astral Software Inc.

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

uv_ffi-0.10.8.post15.tar.gz (4.0 MB view details)

Uploaded Source

Built Distributions

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

uv_ffi-0.10.8.post15-cp38-abi3-win_arm64.whl (11.7 MB view details)

Uploaded CPython 3.8+Windows ARM64

uv_ffi-0.10.8.post15-cp38-abi3-win_amd64.whl (12.1 MB view details)

Uploaded CPython 3.8+Windows x86-64

uv_ffi-0.10.8.post15-cp38-abi3-musllinux_1_2_x86_64.whl (16.3 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ x86-64

uv_ffi-0.10.8.post15-cp38-abi3-musllinux_1_2_aarch64.whl (16.3 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.2+ ARM64

uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_28_x86_64.whl (15.6 MB view details)

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

uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_28_aarch64.whl (16.1 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.28+ ARM64

uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.6 MB view details)

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

uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.0 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARM64

uv_ffi-0.10.8.post15-cp38-abi3-macosx_11_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

uv_ffi-0.10.8.post15-cp38-abi3-macosx_10_12_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

uv_ffi-0.10.8.post15-cp38-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (25.6 MB view details)

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

uv_ffi-0.10.8.post15-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

uv_ffi-0.10.8.post15-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (16.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

Details for the file uv_ffi-0.10.8.post15.tar.gz.

File metadata

  • Download URL: uv_ffi-0.10.8.post15.tar.gz
  • Upload date:
  • Size: 4.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for uv_ffi-0.10.8.post15.tar.gz
Algorithm Hash digest
SHA256 00da33b48a4052b1f176ba7fcb54f1cedb9508b702a34141c07cf6e7f5c9a9dc
MD5 c57f6a1139fa1af7b978a9bc1e9aa9b8
BLAKE2b-256 2e4932e99386096e2432de66ba31a95054a8c96802ba02ffd18e03906b186a69

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15.tar.gz:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-win_arm64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 558987d3edfdd26baddc3047bec9c46171ba09cf3d0d933fe4960b5cc49850ca
MD5 020bdd7b1fc5a77627a0a6dc80c10b48
BLAKE2b-256 55241291f2f7524146f7688214da976669e366a6a15f93b5fc0478e054ef1c4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-win_arm64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 9cbb6b33e420e0daeaf08bc360c1d025ede4ba698c5f0017e0b069e6d90d701c
MD5 bf327161d3006e46cbe0138e41c5c068
BLAKE2b-256 4f9d9a8a9c63f480de01fc75150581ce5c69fa22fdd24f16ee14c778c5c22141

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-win_amd64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a333ffd925b2834898a3f273df6a0be70cd544f8930d6e97bb8f2681e3d86936
MD5 53531130ffddf7d50c4bcc6a2849ac3a
BLAKE2b-256 1f8fe1784825c68ade895718acb3667e3fccf5bec2784c84d74db1d058b1c683

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c5e8bd77aee6d2e1baa4432c8eb6b310bce556ffff5ee23559d6bc8b2e4a0e3
MD5 db7a79192367044867b41ed4fcb9bbc4
BLAKE2b-256 b720e29d11e717e904f71f5bb71d26ba5ff473fba0a6a7179e80206632e88630

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5d65c930a36fd433d0803df4e1976f46c7d5e6e31026d294ffea8ce923ceca9
MD5 526f231e12b6d7a68cc3438437befcf8
BLAKE2b-256 f6637528a524b1f5e717c928503097ce122a25d9f51eb7142faf70b715adec30

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 933edac576c54fb2038c541f925c55f27ac2caff2ced2785c289e784a241565e
MD5 15d81feb8dc9c47d840a6a5c8eb2e8a2
BLAKE2b-256 88d134a9c45c6dd4f2d273c72d80612e8e95a8eca5d89f2f35f7b579508b0026

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b07a4d223c22b39154a07ef3bd5e89e5a56b3f328c4c6b11d68fd07632d060d3
MD5 8cfcab0c3e04f3ca12bd7326818ab53b
BLAKE2b-256 6a5cc31363b4a6159431daf7544142c90970e753043c53af392974bfcf34f71f

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ea0b85b48bd71c719c00bdee0e7cc67ef1c5182cb0cc640cdb495cc70064b87
MD5 722c91f7663aec2f7dc5400c0579827b
BLAKE2b-256 22da84173749b1926c8e9702155d5e6c9e2e4a5a830e634c70175e8e2d679846

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbe47718d4c019735d034614b8758b3ffb5a3e37e2450b19382dbb35ea97229e
MD5 402b33fd428f1ebbcb6e757d241c5d2f
BLAKE2b-256 4657ceebf779a3290b9770f856296a94be2ad8f833763acdce675c48d619e605

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-macosx_11_0_arm64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b69cfeb6965b4e9816b92c60c351d6823f7f995e52f3aa141e73097513f43b8
MD5 1e0f6b7a0c013523446b7afae1d7daf1
BLAKE2b-256 c68a456a3aa84ff23e217ec490330598503404f707e65ee92d13904595c5bf22

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-macosx_10_12_x86_64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp38-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp38-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e2f7732cb726a3ab2b4dd8de7f03fe147ad350e40a5f0706686d190cd7667ea4
MD5 c4524bf2ca7e5da3e35ca67eb15436b7
BLAKE2b-256 c0d8aced109ae2cacc17e95ac1058f2926d937499fc3be39a8cd9146644be939

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp38-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d365a82fd2955de42ace75baa356b5f0042fe526a100531c97db17c41e415e6
MD5 82f937957836c6cfbd88e7721747d88d
BLAKE2b-256 dc3e0ea06a1e7438992ba69481505e996c929ce9cf9763beb2de7f40083cf496

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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

File details

Details for the file uv_ffi-0.10.8.post15-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for uv_ffi-0.10.8.post15-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cceb4b85849ad9695ad8ae24c6ba5ab76e60e64c96090ea26563d3223901fb9
MD5 ed678a67dc49bfe1ff83799b375c2a16
BLAKE2b-256 e4c24ff212bbda89b48854ddedd8408deb3729712a85cdfc94ddb8e0ffea4f86

See more details on using hashes here.

Provenance

The following attestation bundles were made for uv_ffi-0.10.8.post15-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on 1minds3t/uv-ffi

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