From 61042c26faee164b51dda27561c9b67b34af8d9a Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Fri, 15 Feb 2019 22:59:40 -0500 Subject: initial implementation of video start/end times --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index d380308..feca86f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,4 @@ -#![feature(transpose_result)] +#![feature(impl_trait_in_bindings)] extern crate chrono; #[cfg(feature = "diesel")] @@ -16,6 +16,9 @@ extern crate serenity; extern crate sha1; extern crate typemap; extern crate url; +#[macro_use] extern crate itertools; +extern crate time; +extern crate serde_json; use std::{ thread, -- cgit v1.3.1