integra 0.0.2

Integra is a sleek, performant web framework for Rust, harnessing the power of the hyper library. I
integra-0.0.2 is not a library.
Visit the last successful build: integra-0.0.9

Integra Web Framework (Not pubslihed yet!)

Integra is a sleek, performant web framework for Rust, harnessing the power of the hyper library.

Crates.io GitHub repository

🌟 Features

  • Fast: Built on top of hyper, one of the Rust's fastest web libraries.
  • Explicit Routing: Define routes explicitly with a clear and intuitive API reminding you Laravel.
  • Safety First: Benefit from Rust's strong safety guarantees.
  • Minimalistic Design: No bloat, just the essentials.

🚀 Quickstart

To-do

📘 Usage

Unique concept right now is working. Will be published soon.

pub fn initialize_routes() {
    ROUTER.get("/", Box::new(index));
    ROUTER.get("/hello", Box::new(greet));
}

🤝 Contributing

To-do