1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! rsclaw library crate — a thin re-export facade.
//!
//! Everything moved out into workspace crates during the crate-split. This
//! facade re-exports them under their historical `rsclaw::<module>` paths so
//! the integration tests in `tests/*.rs` (and any embedder) keep resolving
//! `rsclaw::server::`, `rsclaw::gateway::`, `rsclaw::provider::`, etc.
//!
//! The binary entry-point is in `main.rs`; the composition root + dispatch
//! logic lives in `rsclaw-runtime`.
// Composition root + RPC handlers (a2a, cmd, cron runner, gateway, hooks,
// server, ws) plus the `run` entry point.
pub use *;
// Re-export the 7 root-knot modules explicitly so `rsclaw::a2a::`,
// `rsclaw::ws::`, etc. resolve as module paths (glob import alone does not
// re-export child modules as paths).
pub use ;
// Extracted base crates — re-exported under their historical module paths so
// integration tests using `rsclaw::config::` / `rsclaw::provider::` etc. keep
// resolving.
pub use rsclaw_agent as agent;
pub use rsclaw_artifact as artifact;
pub use rsclaw_browser as browser;
pub use rsclaw_cap as cap;
pub use rsclaw_channel as channel;
pub use rsclaw_cli as cli;
pub use rsclaw_computer as computer;
pub use rsclaw_config as config;
pub use rsclaw_desktop as desktop;
pub use rsclaw_embed as embed;
pub use rsclaw_events as events;
pub use rsclaw_heartbeat as heartbeat;
pub use rsclaw_i18n as i18n;
pub use rsclaw_kb as kb;
pub use rsclaw_mcp as mcp;
pub use rsclaw_migrate as migrate;
pub use rsclaw_platform as sys;
pub use rsclaw_plugin as plugin;
pub use rsclaw_provider as provider;
pub use rsclaw_skill as skill;
pub use rsclaw_store as store;
pub use rsclaw_util as util;
pub use MemoryTier;
/// Ensure the rustls TLS crypto provider is installed for all lib tests.
/// This runs once before any test in the crate, preventing "No provider set"
/// panics when tests that construct `reqwest::Client` run in parallel.