Skip to content

Commit bb5bd2c

Browse files
committed
Replace log dependency with tracing
1 parent 437f5a9 commit bb5bd2c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ indexmap = "1.0.2"
6969
jemallocator = { version = "0.3", features = ['unprefixed_malloc_on_supported_platforms', 'profiling'] }
7070
lettre = { version = "0.10.0-alpha.1", default-features = false, features = ["file-transport", "smtp-transport", "native-tls", "hostname", "builder"] }
7171
license-exprs = "^1.4"
72-
log = "0.4"
7372
oauth2 = { version = "3.0.0", default-features = false, features = ["reqwest-010"] }
7473
parking_lot = "0.11"
7574
rand = "0.7"
@@ -85,6 +84,7 @@ tar = "0.4.16"
8584
tempfile = "3"
8685
tokio = { version = "0.2", default-features = false, features = ["net", "signal", "io-std"]}
8786
toml = "0.5"
87+
tracing = "0.1"
8888
url = "2.1"
8989

9090
[dev-dependencies]

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ extern crate derive_deref;
1515
#[macro_use]
1616
extern crate diesel;
1717
#[macro_use]
18-
extern crate log;
19-
#[macro_use]
2018
extern crate serde;
2119
#[macro_use]
2220
extern crate serde_json;
21+
#[macro_use]
22+
extern crate tracing;
2323

2424
pub use crate::{app::App, config::Config, uploaders::Uploader};
2525
use std::sync::Arc;

0 commit comments

Comments
 (0)