slack-messaging 0.7.3

Support building Slack Block Kit message
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]

#[macro_use]
mod macros;

/// Objects from that [`Message`] is composed.
pub mod blocks;
/// Objects can be used inside of block elements.
pub mod composition_objects;
/// Error types used in this crate.
pub mod errors;

mod message;
mod validators;
mod value;

pub use message::{Message, MessageBuilder};