artisan 0.13.1

Artisan workspace facade with feature-controlled re-export
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]

//! Artisan workspace facade,通过 feature 控制 re-export。
//!
//! # Features
//!
//! - `http`(默认启用)- re-export [`artisan_http`] 作为 [`http`] 模块
//!
//! # 使用方式
//!
//! ```rust
//! use artisan::http::{Artful, Plugin, Rocket, flow_ctrl::Next};
//! ```

#[cfg(feature = "http")]
pub use artisan_http as http;