mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-18 15:39:04 +00:00
5d439bafc0
Minimum rustc bump required for rust-lang/rust#61775
11 lines
202 B
Rust
11 lines
202 B
Rust
#![feature(proc_macro_hygiene, async_await)]
|
|
|
|
#[macro_use] extern crate rocket;
|
|
|
|
mod common;
|
|
|
|
#[test]
|
|
fn test_development_config() {
|
|
common::test_config(rocket::config::Environment::Development);
|
|
}
|