arcature 0.1.0

Arcature: an opinionated full-stack Rust web framework. One package, batteries included.
Documentation
1
2
3
4
5
6
7
8
9
//! `arc version` — print the framework version.
//!
//! Also reached via `--version` / `-V`. No arguments; no error path beyond the
//! shared `Missing` from the dispatcher.

/// Execute the `version` subcommand: print `arcature <version>`.
pub fn run() {
    println!("arcature {}", crate::FRAMEWORK_VERSION);
}