You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yuurei/src/main.rs

21 lines
375 B

3 years ago
#![cfg_attr(feature="nightly", feature(test))]
3 years ago
3 years ago
#![allow(dead_code)]
3 years ago
#[cfg(all(feature="nightly", test))] extern crate test;
3 years ago
#[macro_use] extern crate serde;
3 years ago
#[macro_use] extern crate lazy_static;
3 years ago
3 years ago
use std::convert::{TryFrom, TryInto};
3 years ago
#[macro_use] mod ext; use ext::*;
3 years ago
mod bytes;
3 years ago
mod delta;
3 years ago
mod state;
3 years ago
3 years ago
#[tokio::main]
async fn main() {
3 years ago
println!("Hello, world!");
4 years ago
}