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
  • uzor-agent-api-1.4.13
    Local HTTP control plane for uzor apps. Read live LayoutManager state, inject input, and drive direct LM operations from external agents (LLMs, QA tools, scripts).
    one day ago
  • uzor-1.4.13
    Core UI engine — geometry, interaction, input state
    one day ago
  • uzor-fonts-1.4.13
    Bundled font assets for uzor (Roboto, JetBrainsMono, NotoEmoji, NotoColorEmoji, etc.)
    one day ago
  • formal-ai-0.191.0
    Formal symbolic AI implementation with OpenAI-compatible APIs
    one day ago
  • tauri-runtime-servocat-3.17.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.17.0 pulls in the web-api-cat 0.7 chapter (boa-cat 0.7 -> 0.7.1, web-api-cat 0.6 -> 0.7.4): user-supplied webview scripts now have addEventListener / removeEventListener / dispatchEvent with bubble dispatch up the parent chain, localStorage / sessionStorage Storage-shaped objects, Promise-based fetch (`await fetch(url)` + `r.text()` + HTTPS via rustls), and an inline `style="..."` round-trip that reaches layout-cat through extract_document. No tauri-runtime-servocat source change beyond the manifest -- the dep bump exposes the new surface to scripts uniformly.
    one day ago
  • web-api-cat-0.7.4
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.4 ships the `EventTarget` mixin: `addEventListener(type, callback)` queues handlers under a lazy `__listeners__` slot; `removeEventListener` drops them by `Value::PartialEq`; `dispatchEvent(event)` walks the bubble chain via the v0.6.8 `__parent__` backref and invokes each handler through boa-cat 0.7.1's now-public `expression::call_function`. Listener throws are swallowed at the dispatch boundary per DOM spec. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    one day ago
  • rlx-onnx-decompose-0.2.6
    Decompose ONNX models into generated RLX Rust source + safetensors/GGUF weights
    one day ago
  • sockudo-adapter-4.5.2
    Connection adapters and horizontal scaling for Sockudo
    one day ago
  • vmette-providers-0.10.0
    The default rootfs-provider registry for vmette (dir + squashfs + tar + OCI, in resolution order)
    one day ago
  • vmette-provider-tar-0.10.0
    Tarball-over-HTTP/file rootfs provider for vmette
    one day ago
  • vmette-provider-squashfs-0.10.0
    Prebuilt squashfs block-image rootfs provider for vmette
    one day ago
  • vmette-provider-oci-0.10.0
    OCI/Docker image rootfs provider for vmette
    one day ago
  • sockudo-rate-limiter-4.5.2
    Rate limiter implementations for Sockudo
    one day ago
  • kryphocron-lexicons-0.3.0
    Lexicon JSON resources, codegen-produced Rust types, and the build-time registry for the kryphocron substrate.
    one day ago
  • harn-cli-0.8.107
    CLI for the Harn programming language — run, test, REPL, format, and lint
    one day ago
  • boa-cat-0.7.1
    Tree-walking ECMAScript interpreter built on ecma-syntax-cat. v0.7.1 promotes `expression::call_function` from `pub(crate)` to `pub` so embedder code (e.g. `web-api-cat`'s `addEventListener` / `dispatchEvent`) can invoke user-supplied JS callbacks from a `NativeFn` without duplicating the dispatch logic. No behavior change; one-line visibility unlock.
    one day ago
  • liter-llm-ffi-1.5.1
    Universal LLM API client with Rust-powered polyglot bindings.
    one day ago
  • web-api-cat-0.7.3
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.3 unlocks HTTPS in `fetch`: bumps net-cat from 0.1 to 0.3 with the `tls` feature enabled (rustls + webpki-roots + ring as the pure-Rust crypto provider, no C toolchain). `https://` URLs now flow through the same code path as `http://`, and net-cat 0.3's chunked-transfer decoding + cross-origin redirect Cookie/Authorization stripping come along for the ride. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    one day ago
  • reinforcex-0.0.5
    Deep Reinforcement Learning Framework
    one day ago
  • web-api-cat-0.7.2
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.2 closes the loop on inline `style="..."`: build_element parses the attribute at construction time into camelCase keys on the element's `style` Object (so `<div style="font-size: 14px">` gives `el.style.fontSize === '14px'`), and `extract_document` serialises the post-eval `style` Object back into a kebab-case `style` attribute on the dom-cat element (so `el.style.color = 'blue'` reaches layout-cat / paint-cat through the standard attribute channel). Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    one day ago
  • aa-cli-0.0.1-alpha.8
    aasm — command-line tool for Agent Assembly
    one day ago
  • web-api-cat-0.7.1
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.1 upgrades `fetch(url)` to return a `Promise<Response>` matching the DOM Fetch API shape: success becomes a resolved Promise carrying the response Object; bad URL / argument errors become a rejected Promise with a `TypeError:`-prefixed string reason; `response.text()` returns a resolved `Promise<string>` of the body; `response.json()` is a rejected-stub deferring to `JSON.parse(await r.text())` (ecma-runtime-cat already exposes JSON.parse). Scripts now use `await fetch(url)` and `fetch(url).then(r => r.text())` end-to-end through the engine's microtask driver. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    one day ago
  • aa-gateway-0.0.1-alpha.8
    Control plane — policy enforcement engine and agent registry for Agent Assembly
    one day ago
  • web-api-cat-0.7.0
    Bindings between boa-cat (JS engine) and the DOM (html-cat tree) plus fetch (net-cat). v0.7.0 opens the Storage chapter: `localStorage` and `sessionStorage` ship as Storage-shaped Objects exposing `getItem` / `setItem` / `removeItem` / `clear` / `key` plus a `length` accessor; the `window` global is now a proper Object whose `document` / `localStorage` / `sessionStorage` properties point at the matching top-level bindings. Hosts seed pre-eval and read post-eval via `lookup_local_storage` / `seed_storage` / `read_storage_items`, mirroring the v0.4 cookie pattern. Seventh sub-crate of a Servo-replacement webview runtime targeting Tauri.
    one day ago
  • taktora-connector-zenoh-0.2.14
    Zenoh reference connector for the taktora-connector framework. Implements BB_0040 (FEAT_0042).
    one day ago
  • taktora-connector-ethercat-0.4.4
    EtherCAT reference connector for the taktora-connector framework. Implements BB_0030 (FEAT_0041).
    one day ago
  • taktora-connector-can-0.1.15
    CAN (SocketCAN) reference connector for the taktora-connector framework. Implements BB_0070 (FEAT_0046).
    one day ago
  • taktora-connector-host-0.1.15
    ConnectorHost / ConnectorGateway builders and the framework's `Connector` trait. Implements BB_0005.
    one day ago
  • taktora-executor-tracing-0.1.14
    tracing-based Observer for taktora-executor.
    one day ago
  • taktora-executor-0.4.1
    Execution framework for iceoryx2-based Rust applications.
    one day ago
Previous Page Next Page