activitypub-federation-rust/src/protocol/mod.rs
2023-03-04 23:20:06 +01:00

10 lines
345 B
Rust

/// Wrapper for federated structs which handles `@context` field
pub mod context;
/// Serde deserialization functions which help to receive differently shaped data
pub mod helpers;
/// Struct which is used to federate actor key for HTTP signatures
pub mod public_key;
pub mod values;
/// Verify that received data is valid
pub mod verification;