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
70 downloads per month
Used in rupring
51KB
1K
SLoC
rupring
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.
More Details
Please refer to the documentation for more details.
Dependencies
~260–710KB
~17K SLoC