activitypub-federation-rust/src/protocol/mod.rs

10 lines
345 B
Rust
Raw Normal View History

2023-03-02 06:18:06 -08:00
/// Wrapper for federated structs which handles `@context` field
2022-06-02 04:17:12 -07:00
pub mod context;
2023-03-02 06:18:06 -08:00
/// Serde deserialization functions which help to receive differently shaped data
2022-06-02 04:17:12 -07:00
pub mod helpers;
2023-03-02 06:18:06 -08:00
/// Struct which is used to federate actor key for HTTP signatures
2023-03-01 15:19:10 -08:00
pub mod public_key;
2022-06-02 04:17:12 -07:00
pub mod values;
2023-03-02 06:18:06 -08:00
/// Verify that received data is valid
pub mod verification;