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
  • blueprint-networking-0.2.0-alpha.8
    Networking utilities for Tangle Blueprints
    17 hours ago
  • formal-ai-0.199.0
    Formal symbolic AI implementation with OpenAI-compatible APIs
    17 hours ago
  • blueprint-keystore-0.2.0-alpha.9
    Keystore for Tangle Blueprints
    17 hours ago
  • web-api-cat-0.7.8
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.8 extends `querySelector` from the v0.6.x five-pattern subset to a real CSS selector grammar covering most real-world script usage: comma-separated selector lists; `tag` / `.class` (multiple per compound) / `#id` / `[attr]` / `[attr=val]` / `[attr^=val]` / `[attr$=val]` / `[attr*=val]` / `*`; whitespace (descendant) and `>` (child) combinators. Reverse-walks the candidate's ancestor chain via the v0.6.8 `__parent__` backref for combinator matching. Sibling combinators (`+`, `~`) and pseudo-classes deferred. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    18 hours ago
  • sparrow-cli-0.9.3
    A local-first Rust agent cockpit — route, run, replay, rewind
    18 hours ago
  • sparrow-tools-0.9.3
    Agent tools (fs, edit, search, web, browser, git, exec, todo, media, code-nav, memory tool) for Sparrow
    18 hours ago
  • geiserx_ts_ffi-0.35.2
    c ffi bindings for tailscale-rs
    18 hours ago
  • tauri-runtime-servocat-3.21.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.21.0 picks up boa-cat 0.7.2 + web-api-cat 0.7.7: user-supplied webview scripts get capture-phase event listeners (`addEventListener(type, cb, true)` / `{capture: true}`) with spec-compliant 3-phase dispatch (CAPTURE / AT_TARGET / BUBBLE) plus `Element.dataset` (`<div data-user-name='alice'>` exposes `el.dataset.userName`). No tauri-runtime-servocat source change beyond the manifest. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    18 hours ago
  • blueprint-tee-0.2.0-alpha.7
    First-class TEE (Trusted Execution Environment) support for the Blueprint SDK
    18 hours ago
  • web-api-cat-0.7.7
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.7 adds `Element.dataset`: a snapshot Object on each parsed element whose properties are the camelCase suffixes of all `data-*` attributes. `<div data-user-name='alice'>` becomes `el.dataset.userName === 'alice'`. `createElement` output starts with an empty dataset. Snapshot semantics: runtime `setAttribute('data-foo', 'x')` and `el.dataset.foo = 'x'` don't sync to each other (no Proxy support). `inline_style::kebab_to_camel` promoted to `pub` for the dataset builder. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    18 hours ago
  • fontlift-cli-5.0.15
    CLI interface for fontlift
    18 hours ago
  • fontlift-platform-mac-5.0.15
    macOS platform implementation for fontlift
    18 hours ago
  • tastty-0.1.0
    Embeddable pseudoterminal sessions for Rust applications
    18 hours ago
  • tastty-driver-0.1.0
    Terminal automation driver built on tastty
    18 hours ago
  • tastty-core-0.1.0
    Sans-IO core of the tastty terminal session library: VT parser, screen buffer, and byte encoders.
    18 hours ago
  • blueprint-faas-0.2.0-alpha.6
    FaaS provider integrations for Blueprint SDK
    18 hours ago
  • web-api-cat-0.7.6
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.6 adds capture-phase support to the event system: `addEventListener(type, callback, useCapture)` / `addEventListener(type, callback, { capture: true })` register a capture listener; `dispatchEvent` now walks three spec-mandated phases (CAPTURE root->target's-parent, AT_TARGET, BUBBLE target's-parent->root). `removeEventListener` respects the capture flag for matching. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    18 hours ago
  • geiserx_ts_ffi-0.35.1
    c ffi bindings for tailscale-rs
    18 hours ago
  • wca-0.50.0
    The tool to make CLI ( commands user interface ). It is able to aggregate external binary applications, as well as functions, which are written in your language.
    18 hours ago
  • synth-verify-0.11.42
    Z3 SMT translation validation for the Synth compiler
    18 hours ago
  • boa-cat-0.7.2
    Tree-walking ECMAScript interpreter built on ecma-syntax-cat. v0.7.2 lands three integration tests pinning down the existing `new SomeNativeFn(args)` dispatch path: `expression::construct` allocates a fresh empty Object as `this`, hands it to `call_function`, and honours the spec's "return the Object the constructor produced, else fall back to `this`" semantics. Embedders (e.g. `web-api-cat`'s `Event` / `CustomEvent` constructors) can now rely on this surface without reverse-engineering the implementation. No source change.
    19 hours ago
  • geiserx_ts_ffi-0.35.0
    c ffi bindings for tailscale-rs
    19 hours ago
  • axocoatl-server-0.1.4
    Axum HTTP/WebSocket API server for Axocoatl
    19 hours ago
  • geiserx_ts_ffi-0.34.2
    c ffi bindings for tailscale-rs
    19 hours ago
  • harn-cli-0.8.108
    CLI for the Harn programming language — run, test, REPL, format, and lint
    20 hours ago
  • geiserx_ts_ffi-0.34.1
    c ffi bindings for tailscale-rs
    20 hours ago
  • tauri-runtime-servocat-3.20.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.20.0 picks up web-api-cat 0.7.5: user-supplied webview scripts can now call `event.preventDefault()` / `stopPropagation()` / `stopImmediatePropagation()` on the event Object that `dispatchEvent` passes to listeners, plus read the canonical Event spec slots `target` / `currentTarget` / `defaultPrevented`. No tauri-runtime-servocat source change beyond the manifest -- the dep bump exposes the new surface to scripts uniformly. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    20 hours ago
  • web-api-cat-0.7.5
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.5 extends the v0.7.4 event system with spec-compliant event flow: `dispatchEvent` decorates the supplied event with `target` / `currentTarget` / `defaultPrevented` plus `preventDefault()` / `stopPropagation()` / `stopImmediatePropagation()` methods. Listeners interact with the dispatch as they would in a real browser without needing a `new Event()` constructor. `dispatchEvent` returns `false` when any listener called `preventDefault`. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    20 hours ago
  • subsume-0.13.0
    Geometric region embeddings (boxes, cones, octagons, Gaussians, hyperbolic intervals, sheaf networks) for subsumption, entailment, and logical query answering
    20 hours ago
  • caretta-0.14.4
    caretta agent
    20 hours ago
Previous Page Next Page