#![deny(warnings)] extern crate hyper; extern crate futures; extern crate pretty_env_logger; //extern crate num_cpus; use hyper::header::{ContentLength, ContentType}; use hyper::server::{Http, Service, Request, Response}; static PHRASE: &'static [u8] = b"Hello World!"; #[derive(Clone, Copy)] struct Hello; impl Service for Hello { type Request = Request; type Response = Response; type Error = hyper::Error; type Future = ::futures::Finished; fn call(&self, _req: Request) -> Self::Future { ::futures::finished( Response::new() .with_header(ContentLength(PHRASE.len() as u64)) .with_header(ContentType::plaintext()) .with_body(PHRASE) ) } } fn main() { pretty_env_logger::init().unwrap(); let addr = "127.0.0.1:3000".parse().unwrap(); let server = Http::new().bind(&addr, || Ok(Hello)).unwrap(); println!("Listening on http://{}", server.local_addr().unwrap()); server.run().unwrap(); }