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
//! Caravan-shipped resource seams + concrete impls.
//!
//! Resource adapters (BlobStore, MessageQueue) are part of caravan-rpc
//! rather than per-user-repo code. User crates import the seam trait,
//! call `client::<dyn BlobStore>().put(...)`, and let caravan
//! auto-register the right impl at startup via
//! [`auto_register_resources`].
//!
//! The thesis: every caravan user writes only `#[wagon]` / `provide` /
//! `client` against their own domain seams; resource adapters ship from
//! caravan so a new user doesn't have to hand-author aws-sdk wrappers /
//! redis clients / lapin channels.
//!
//! Optional features gate the heavy deps:
//!
//! ```toml
//! caravan-rpc = { version = "0.1", features = ["resources-aws", "resources-redis", "resources-rabbit"] }
//! ```
//!
//! The seam traits themselves load without any feature; only the
//! concrete impls demand their respective backend crates.
pub use auto_register_resources;
pub use ;
pub use ;
pub use S3BlobStore;
pub use RabbitMQQueue;
pub use RedisStreamQueue;
pub use SqsQueue;