Docs.rs
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

Releases

Recent crates failed to build
  • Recent
  • Stars
  • Recent Failures
  • Failures By Stars
  • Activity
  • Queue
  • geiserx_ts_ffi-0.35.6
    c ffi bindings for tailscale-rs
    14 hours ago
  • dear-imgui-sdl3-0.15.0
    SDL3 platform backend with optional OpenGL3 renderer for dear-imgui-rs
    14 hours ago
  • tauri-runtime-servocat-3.26.0
    Servo-replacement runtime for Tauri: wires html-cat, css-cat, dom-cat, layout-cat, paint-cat, net-cat, boa-cat, ecma-runtime-cat, and web-api-cat into a single rendering + scripting pipeline. v3.26.0 picks up web-api-cat 0.7.12 + 0.7.13: user-supplied webview scripts get sibling combinators (`a + b` adjacent, `a ~ b` general), `Element.matches(selector)` predicate, `Element.closest(selector)` (walks ancestors inclusive of self), and structural pseudo-classes (`:first-child`, `:last-child`, `:only-child`). No tauri-runtime-servocat source change beyond the manifest. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    14 hours ago
  • barretenberg-rs-5.0.0-nightly.20260614
    Rust bindings for Barretenberg, a C++ cryptographic library for zero-knowledge proofs
    14 hours ago
  • blueprint-x402-0.2.0-alpha.9
    x402 payment gateway for Blueprint SDK — cross-chain EVM settlement for job execution
    14 hours ago
  • blueprint-webhooks-0.2.0-alpha.9
    Webhook producer for Blueprint SDK — trigger jobs from external HTTP events
    14 hours ago
  • wakezilla-0.2.3
    A Wake-on-LAN proxy server written in Rust
    14 hours ago
  • synaps-0.3.0
    Terminal-native AI agent runtime — parallel orchestration, reactive subagents, MCP, autonomous supervision
    14 hours ago
  • synaps-tui-0.3.0
    Terminal UI layer — ratatui, crossterm, syntect, tachyonfx
    14 hours ago
  • synaps-engine-0.3.0
    Runtime engine — streaming, tools, MCP, skills, extensions, sidecar
    14 hours ago
  • blueprint-runner-0.2.0-alpha.9
    Runner for the Blueprint SDK
    14 hours ago
  • web-api-cat-0.7.13
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.13 adds `Element.matches(selector)` (predicate against `this`), `Element.closest(selector)` (walks ancestor chain inclusive of self, returns nearest match or null), and three pseudo-classes (`:first-child`, `:last-child`, `:only-child`) reachable through `querySelector` / `querySelectorAll` / `matches` / `closest` -- all reusing the v0.7.8-12 selector machinery. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    15 hours ago
  • qbix-0.0.2
    Random access to BAM records by read name using a compact .qbi index
    15 hours ago
  • motosan-ta-data-0.12.0
    Market data providers with TTL caching for motosan-ta (via motosan-finance adapters)
    15 hours ago
  • motosan-ta-batch-0.12.0
    Technical analysis indicators, screeners, and patterns for quantitative trading
    15 hours ago
  • web-api-cat-0.7.12
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.12 extends the v0.7.8 selector grammar with sibling combinators: `a + b` (adjacent sibling -- b's immediately-preceding sibling matches a) and `a ~ b` (general sibling -- any of b's preceding siblings matches a). Both walk the parent's children array via the existing `__parent__` backref to compute sibling relationships. Combines with all existing combinators (`section h2 + p`, etc.) and reaches scripts through both `querySelector` and `querySelectorAll`. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    15 hours ago
  • tauri-runtime-servocat-3.25.0
    Servo-replacement runtime for Tauri: wires html-cat, css-cat, dom-cat, layout-cat, paint-cat, net-cat, boa-cat, ecma-runtime-cat, and web-api-cat into a single rendering + scripting pipeline. v3.25.0 picks up web-api-cat 0.7.11: `Element.querySelectorAll(selector)` and `document.querySelectorAll(selector)` are now reachable from user-supplied webview scripts, returning a NodeList-shaped Object of all matching descendants (numeric-key entries + `length`). Same v0.7.8 selector grammar; no tauri-runtime-servocat source change beyond the manifest. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    15 hours ago
  • web-api-cat-0.7.11
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.11 adds `querySelectorAll(selector)` on both `Element` and `document`. Walks every descendant in depth-first pre-order and returns ALL matches as a NodeList-shaped Object (numeric-key entries + `length`, same shape as `Element.children` so script-side `list[i]` / `list.length` iteration patterns work uniformly). Same selector grammar as v0.7.8 (`tag` / `.class` / `#id` / `[attr...]` / `*` / descendant + child combinators / comma-separated lists). Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    15 hours ago
  • purl_validator-1.16.58
    Offline PackageURL validator using a prebuilt FST of known packages.
    16 hours ago
  • tauri-runtime-servocat-3.24.0
    Servo-replacement runtime for Tauri: wires html-cat, css-cat, dom-cat, layout-cat, paint-cat, net-cat, boa-cat, ecma-runtime-cat, and web-api-cat into a single rendering + scripting pipeline. v3.24.0 picks up web-api-cat 0.7.10: `preventDefault()` now honours the spec's `cancelable` gate -- it only flips `defaultPrevented` when the event was constructed with `cancelable: true`. On a default-constructed `new Event(type)` or a plain `{type: 'foo'}` literal it's a silent no-op. No tauri-runtime-servocat source change beyond the manifest. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    16 hours ago
  • meta-language-0.41.0
    A self-describing links-network core for lossless language representation
    16 hours ago
  • web-api-cat-0.7.10
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.10 honours the spec's `cancelable` gate on `preventDefault()`: the method now only flips `defaultPrevented` when `this.cancelable === true`. Default-constructed events (plain `{type: 'foo'}` literals, or `new Event(type)` without explicit options) are NOT cancelable and `preventDefault` is a silent no-op on them; scripts must opt in via `new Event(type, { cancelable: true })` or `{ type, cancelable: true }`. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    16 hours ago
  • tauri-runtime-servocat-3.23.0
    Servo-replacement runtime for Tauri: wires html-cat, css-cat, dom-cat, layout-cat, paint-cat, net-cat, boa-cat, ecma-runtime-cat, and web-api-cat into a single rendering + scripting pipeline. v3.23.0 picks up web-api-cat 0.7.9: `new Event(type, options)` and `new CustomEvent(type, options)` constructors are now global to user-supplied webview scripts, and dispatchEvent decorates the user's event Object in place so post-dispatch reads of `defaultPrevented` / `target` / `currentTarget` on the caller's reference are observable. No tauri-runtime-servocat source change beyond the manifest. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    17 hours ago
  • geiserx_ts_ffi-0.35.5
    c ffi bindings for tailscale-rs
    17 hours ago
  • web-api-cat-0.7.9
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.9 ships `new Event(type, options)` and `new CustomEvent(type, options)` constructors as global bindings (and the legacy bare-call forms, since boa-cat 0.7.2's NativeFn-as-constructor path supports both). Dispatch now decorates the user's event Object in place rather than creating a fresh copy, so post-dispatch reads of `defaultPrevented` / `target` / `currentTarget` on the caller's reference reflect what happened during the bubble walk. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    17 hours ago
  • formal-ai-0.200.0
    Formal symbolic AI implementation with OpenAI-compatible APIs
    17 hours ago
  • tauri-remote-ui-1.1.0
    A Tauri plugin that exposes the application’s UI to a web browser, allowing full interaction while the native app continues running. This enables frontend debug, end-to-end UI testing using existing web-based testing tools without requiring modifications to the app itself.
    17 hours ago
  • geiserx_ts_ffi-0.35.4
    c ffi bindings for tailscale-rs
    17 hours ago
  • tauri-runtime-servocat-3.22.0
    Servo-replacement runtime for Tauri: wires html-cat, css-cat, dom-cat, layout-cat, paint-cat, net-cat, boa-cat, ecma-runtime-cat, and web-api-cat into a single rendering + scripting pipeline. v3.22.0 picks up web-api-cat 0.7.8: user-supplied webview scripts get an extended `querySelector` grammar covering comma-separated selector lists, multi-class compounds, attribute selectors (`[attr]` / `[attr=val]` / `[attr^=val]` / `[attr$=val]` / `[attr*=val]`), the universal `*`, and whitespace + `>` combinators. No tauri-runtime-servocat source change beyond the manifest. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    17 hours ago
  • geiserx_ts_ffi-0.35.3
    c ffi bindings for tailscale-rs
    17 hours ago
Previous Page Next Page