feat: add worker runtime fs store

This commit is contained in:
2026-06-26 04:40:58 +09:00
parent 40d4138068
commit 4071343996
8 changed files with 1240 additions and 12 deletions
+8 -3
View File
@@ -1,17 +1,22 @@
//! Embedded Runtime domain API for Worker management.
//!
//! `worker-runtime` intentionally stays independent from HTTP/WebSocket servers,
//! filesystem persistence, provider execution, and the existing Worker host. It
//! defines the in-process Runtime authority surface that higher layers can later
//! adapt into registries or web APIs.
//! provider execution, and the existing Worker host. Filesystem persistence is
//! available only through the optional `fs-store` feature. The crate defines the
//! in-process Runtime authority surface that higher layers can later adapt into
//! registries or web APIs.
pub mod catalog;
pub mod diagnostics;
pub mod error;
#[cfg(feature = "fs-store")]
pub mod fs_store;
pub mod identity;
pub mod interaction;
pub mod management;
pub mod observation;
mod runtime;
#[cfg(feature = "fs-store")]
pub use fs_store::{FsRuntimeStore, FsRuntimeStoreOptions};
pub use runtime::Runtime;