diff options
| author | Nathan Jaremko | 2018-05-16 23:32:15 -0400 |
|---|---|---|
| committer | Nathan Jaremko | 2018-05-16 23:32:15 -0400 |
| commit | 07db1bb3e6e55cc433c286f03eea8a4df8bcbfaf (patch) | |
| tree | d94e8da64e8d987d0186d53cfb03e1aa0ae76187 /src/main.rs | |
| parent | e394ea52b04a99ba55719a7a9764bca3ebb591d2 (diff) | |
| download | podcast-07db1bb3e6e55cc433c286f03eea8a4df8bcbfaf.tar.bz2 | |
Escape filenames to prevent issues on some filesystems
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 4016199..96572cc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,6 +4,8 @@ extern crate chrono; extern crate clap; #[macro_use] extern crate error_chain; +#[macro_use] +extern crate lazy_static; extern crate rayon; extern crate regex; extern crate reqwest; @@ -29,7 +31,7 @@ use utils::*; use clap::{App, Arg, SubCommand}; -const VERSION: &str = "0.5.5"; +const VERSION: &str = "0.5.6"; fn main() -> Result<()> { create_directories().chain_err(|| "unable to create directories")?; |
