scope 0.1.0

A high-assurance framework for scoped lifetimes and deterministic execution boundaries. Part of the Honest-Classified security suite.
Documentation
  • Coverage
  • 100%
    1 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 2.36 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 980.58 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 14s Average build duration of successful builds.
  • all releases: 14s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • jameshuntt/classified
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jameshuntt

SCOPE

Deterministic execution boundaries and lifetime-orchestrated concurrency.

This crate provides primitives for managing scoped execution flows, ensuring that asynchronous tasks and memory references remain strictly confined to their intended lifetimes.

Architectural Principles

  • Containment: Guarantees that execution cannot outlive its defined scope.
  • Deterministic Cleanup: Synchronous-style resource management for asynchronous flows.
  • Zero-Cost Abstraction: Leverages Rust's borrow checker to enforce execution boundaries at compile-time without runtime overhead.
  • Safety: Eliminates "escaped reference" vulnerabilities in complex orchestrations.