12 releases (7 breaking)

0.8.2 Aug 28, 2024
0.7.2 Aug 20, 2024
0.7.1 Feb 2, 2024
0.6.0 Dec 27, 2023
0.1.0 Oct 10, 2023

#1132 in Procedural macros

Download history 2/week @ 2024-07-24 11/week @ 2024-07-31 84/week @ 2024-08-14 162/week @ 2024-08-21 209/week @ 2024-08-28 32/week @ 2024-09-11 24/week @ 2024-09-18 20/week @ 2024-09-25 22/week @ 2024-10-02 1/week @ 2024-10-09

70 downloads per month
Used in rupring

MIT license

51KB
1K SLoC

rupring

GitHub license

spring on rust

Get Started

required dependency list

rupring = "0.9.1"
serde = { version="1.0.193", features=["derive"] }

And you can write your server like this:

#[derive(Debug, Clone, Copy)]
#[rupring::Module(controllers=[HomeController{}], modules=[])]
pub struct RootModule {}

#[derive(Debug, Clone)]
#[rupring::Controller(prefix=/, routes=[hello, echo])]
pub struct HomeController {}

#[rupring::Get(path = /)]
pub fn hello(_request: rupring::Request) -> rupring::Response {
    rupring::Response::new().text("Hello, World!".to_string())
}

#[rupring::Get(path = /echo)]
pub fn echo(request: rupring::Request) -> rupring::Response {
    rupring::Response::new().text(request.body)
}

fn main() {
    rupring::run(RootModule {})
}

And if you run the program, it will work fine.
hello_world

More Details

Please refer to the documentation for more details.

Dependencies

~260–710KB
~17K SLoC