crud_hyper 0.1.0

A simple CRUD (Create, Read, Update, Delete) web application built using Rust's `hyper` library. This project demonstrates how to implement basic CRUD operations with an in-memory database and serves as a learning resource for Rust web development.
Documentation
1
2
3
4
5
6
7
8
9
10
// src/lib.rs

// Declare all public modules here
pub mod data;
pub mod manage_item;
pub mod server_hyper;

// Re-export public APIs for easier access
pub use data::{create_item, delete_item, read_items, update_item, Db, Item};
pub use server_hyper::handle_request;