rtiow: fix doc test error. Add warp to build.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2019-11-09 13:23:57 -08:00
parent 7ad3e82309
commit 2e13fa317e
4 changed files with 526 additions and 1 deletions

View File

@@ -7,3 +7,13 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
askama = "0.7.1"
image = "0.22.3"
log = "0.4.5"
rand = "0.5.5"
renderer = { path = "../renderer" }
serde = "1.0.79"
serde_derive = "1.0.79"
stderrlog = "0.4.1"
structopt = "0.2.10"
warp = "0.1.20"

View File

@@ -1,3 +1,5 @@
use warp;
fn main() {
println!("Hello, world!");
}