urbit-http-api 0.7.3

Wraps the Urbit ship http api exposing it as an easy-to-use Rust crate.
Documentation
pub mod apps;
pub mod channel;
pub mod error;
pub mod graph;
pub mod graphstore;
pub mod helper;
pub mod interface;
pub mod local_config;
pub mod subscription;
pub mod traits;

pub use apps::collections::{Collection, Link};
pub use apps::harkstore::HarkStore;
pub use apps::invitestore::InviteStore;
pub use apps::notebook::Note;
pub use channel::Channel;
pub use error::{Result, UrbitAPIError};
pub use graph::{Graph, Node, NodeContents};
pub use graphstore::Module;
pub use helper::get_current_da_time;
pub use interface::ShipInterface;
pub use local_config::{
    create_new_ship_config_file, default_cli_ship_interface_setup, ship_interface_from_config,
    ship_interface_from_local_config,
};
pub use subscription::Subscription;
pub use traits::messaging::{AuthoredMessage, Message, Messaging};