🏗️ Elegant & Highly Performant Async Gemini Server Framework for the Modern Age
async
framework
gemini-protocol
protocol
gemini
rust
1#![deny(
2 clippy::all,
3 clippy::nursery,
4 clippy::pedantic,
5 future_incompatible,
6 nonstandard_style,
7 rust_2018_idioms,
8 unsafe_code,
9 unused,
10 warnings
11)]
12#![doc = include_str!("../README.md")]
13#![recursion_limit = "128"]
14
15pub mod context;
16pub mod handler;
17pub mod module;
18#[cfg(feature = "prelude")]
19pub mod prelude;
20pub mod response;
21pub mod router;
22pub mod router_option;
23pub mod utilities;
24
25#[macro_use]
26extern crate log;
27
28#[cfg(feature = "async-std")]
29pub use async_std::main;
30#[cfg(feature = "tokio")]
31pub use tokio::main;