Skip to content

Commit

Permalink
Update to tracing 0.1.23 (#1215)
Browse files Browse the repository at this point in the history
The `tracing-futures` crate is no longer needed with the release of `tracing` v0.1.23
  • Loading branch information
nickelc committed Feb 5, 2021
1 parent 2be89e2 commit 2a21347
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Expand Up @@ -14,12 +14,11 @@ include = ["src/**/*", "LICENSE.md", "README.md", "CHANGELOG.md", "build.rs"]

[dependencies]
bitflags = "1"
tracing-futures = "0.2"
serde_json = "1"
async-trait = "0.1"

[dependencies.tracing]
version = "0.1"
version = "0.1.23"
features = ["log"]

[dependencies.command_attr]
Expand Down
3 changes: 1 addition & 2 deletions examples/e06_sample_bot_structure/Cargo.toml
Expand Up @@ -6,9 +6,8 @@ edition = "2018"

[dependencies]
dotenv = "0.15"
tracing = "0.1"
tracing = "0.1.23"
tracing-subscriber = "0.2"
tracing-futures = "0.2" # needed so intrument works with async functions.

[dependencies.tokio]
version = "1.0"
Expand Down
3 changes: 1 addition & 2 deletions examples/e07_env_logging/Cargo.toml
Expand Up @@ -5,9 +5,8 @@ authors = ["my name <my@email.address>"]
edition = "2018"

[dependencies]
tracing = "0.1"
tracing = "0.1.23"
tracing-subscriber = "0.2"
tracing-futures = "0.2" # needed so intrument works with async functions.
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }

[dependencies.serenity]
Expand Down

0 comments on commit 2a21347

Please sign in to comment.