Skip to content

Commit ac9d73d

Browse files
committed
Bump env_logger
1 parent bd0cd6d commit ac9d73d

File tree

3 files changed

+59
-7
lines changed

3 files changed

+59
-7
lines changed

Cargo.lock

+56-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ rand = "0.4"
3232
git2 = "0.6.4"
3333
flate2 = "1.0"
3434
semver = "0.5"
35-
url = "1.2.1"
35+
url = "1.2"
3636
tar = "0.4.13"
3737

3838
openssl = "0.9.14"
3939
curl = "0.4"
4040
oauth2 = "0.3"
4141
log = "0.3"
42-
env_logger = "0.4"
42+
env_logger = "0.5"
4343
hex = "0.2"
4444
htmlescape = "0.3.1"
4545
license-exprs = "^1.3"

src/bin/server.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use std::sync::mpsc::channel;
1515
#[allow(dead_code)]
1616
fn main() {
1717
// Initialize logging
18-
env_logger::init().unwrap();
18+
env_logger::init();
1919
let config: cargo_registry::Config = Default::default();
2020

2121
// If there isn't a git checkout containing the crate index repo at the path specified

0 commit comments

Comments
 (0)