Skip to content

Commit

Permalink
Fix nightly builds (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
psiofxt authored and goldsborough committed Oct 13, 2018
1 parent 91ec7a8 commit 5f76469
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
25 changes: 13 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -9,7 +9,7 @@ env_logger = "0.5.3"
futures = "0.1.17"
hyper = "0.11.14"
log = "0.4.1"
maud = "0.17.3"
maud = { git = "https://github.com/lfairy/maud" }
postgres = "0.15.1"
serde = "1.0.27"
serde_derive = "1.0.27"
Expand Down
6 changes: 3 additions & 3 deletions src/main.rs
@@ -1,4 +1,4 @@
#![feature(proc_macro)]
#![feature(proc_macro_hygiene)]

extern crate hyper;
extern crate maud;
Expand Down Expand Up @@ -168,8 +168,8 @@ fn query_db(time_range: TimeRange, db_connection: &PgConnection) -> Option<Vec<M
fn render_page(messages: Vec<Message>) -> String {
(html! {
head {
title "microservice"
style "body { font-family: monospace }"
title {"microservice"}
style {"body { font-family: monospace }"}
}
body {
ul {
Expand Down

0 comments on commit 5f76469

Please sign in to comment.