Skip to content

Commit 0041dfa

Browse files
tesujiCentril
authored andcommittedJun 26, 2019
Rustup (#277)
* build: Update rust-toolchain * build: Update deps to compatible version chrono 0.4.6 0.4.7 reqwest 0.9.15 0.9.18 rocket 0.4.0 0.4.1 rocket_contrib 0.4.0 0.4.1 serde 1.0.90 1.0.93 serde_derive 1.0.90 1.0.93 * build: Update dotenv to 0.14.1 * build: Update env_logger and log env_logger 0.4.3 --- 0.6.1 Normal --- log 0.3.9 --- 0.4.6 Normal --- * build: Update urlencoded to 0.6.0 * build: Update lock file Removing conduit-mime-types v0.7.3 Removing error v0.1.9 Updating futures v0.1.27 -> v0.1.28 Updating iron v0.5.1 -> v0.6.0 Removing lazy_static v0.2.11 Adding mime_guess v1.8.7
1 parent 1206d6e commit 0041dfa

File tree

4 files changed

+521
-492
lines changed

4 files changed

+521
-492
lines changed
 

‎Cargo.lock

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

‎Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ edition = "2018"
66

77
# Sorted by alphanumeric order
88
[dependencies]
9-
dotenv = "0.13.0"
10-
env_logger = "0.4"
9+
dotenv = "0.14.1"
10+
env_logger = "0.6.1"
1111
hex = "0.3.2"
1212
itertools = "0.8.0"
1313
lazy_static = "1.2.0"
14-
log = "0.3.6"
14+
log = "0.4.6"
1515
maplit = "1.0.1"
1616
reqwest = "0.9.12"
1717
rocket = "0.4.0"
@@ -22,7 +22,7 @@ serde_derive = "1.0.59"
2222
serde_json = "1.0"
2323
toml = "0.4"
2424
url = "1.4"
25-
urlencoded = "0.5"
25+
urlencoded = "0.6.0"
2626

2727
[dependencies.chrono]
2828
features = ["serde"]

‎rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2019-04-26
1+
nightly-2019-06-26

‎src/main.rs

+10-11
Original file line numberDiff line numberDiff line change
@@ -34,30 +34,29 @@ use chrono::Local;
3434
use diesel::pg::PgConnection;
3535
use diesel::r2d2::ConnectionManager;
3636
use diesel::r2d2::Pool;
37-
use env_logger::LogBuilder;
38-
use log::LogRecord;
3937

4038
use crate::config::CONFIG;
4139

4240
fn main() {
41+
use std::io::Write;
42+
4343
// init environment variables, CLI, and logging
4444
dotenv::dotenv().ok();
4545

46-
LogBuilder::new()
47-
.format(|rec: &LogRecord<'_>| {
48-
let loc = rec.location();
49-
format!(
46+
env_logger::Builder::new()
47+
.format(|buf, rec| {
48+
writeln!(
49+
buf,
5050
"[{} {}:{} {}] {}",
5151
rec.level(),
52-
loc.module_path(),
53-
loc.line(),
52+
rec.module_path().unwrap_or("<unnamed>"),
53+
rec.line().unwrap_or(0),
5454
Local::now().format("%Y-%m-%d %H:%M:%S"),
5555
rec.args()
5656
)
5757
})
58-
.parse(&std::env::var("RUST_LOG").unwrap_or_else(|_| "info".to_string()))
59-
.init()
60-
.unwrap();
58+
.parse_filters(&std::env::var("RUST_LOG").unwrap_or_else(|_| "info".to_string()))
59+
.init();
6160

6261
debug!("Logging initialized.");
6362
let _ = CONFIG.check();

0 commit comments

Comments
 (0)
Please sign in to comment.