alfrusco 0.3.0

Utilities for building Alfred workflows with Rust.
Documentation
// Internal modules
mod arg;
mod background;
mod background_job;
mod error;
mod icon;
mod item;
mod logging;
mod modifiers;
mod response;
mod runnable;
mod sort_and_filter;
mod text;
mod url_item;
mod workflow;

pub mod clipboard;
pub mod config;
pub mod internal_handlers;

pub use arg::Arg;
pub use error::{Error, Result, WorkflowError};
pub use icon::*;
pub use internal_handlers::handle;
pub use item::{
    Item, BOOST_HIGH, BOOST_HIGHER, BOOST_HIGHEST, BOOST_LOW, BOOST_MODERATE, BOOST_SLIGHT,
};
pub use logging::init_logging;
pub use modifiers::{Key, Modifier};
pub use response::Response;
pub use runnable::{execute, execute_async, AsyncRunnable, Runnable};
pub use text::Text;
pub use url_item::URLItem;
pub use workflow::Workflow;