Skip to content

Commit

Permalink
Fix compilation on newer nightly by removing unused feature of metric…
Browse files Browse the repository at this point in the history
…s crate

Fix features
  • Loading branch information
Asya Corbeau committed Mar 5, 2024
1 parent 5702717 commit 29e7e97
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
[package]
name = "mobc"
version = "0.8.3"
authors = ["importcjj <[email protected]>", "Garren Smith <[email protected]>"]
authors = [
"importcjj <[email protected]>",
"Garren Smith <[email protected]>",
]
edition = "2018"
readme = "README.md"
license = "MIT/Apache-2.0"
Expand All @@ -18,16 +21,20 @@ unstable = []

[dependencies]
futures-core = "0.3"
futures-channel = { version = "0.3", features=["sink"] }
futures-util = { version = "0.3", features=["sink"] }
tokio = { version = "1", features=["rt", "rt-multi-thread", "time"], optional = true }
async-std = { version = "1.0", features=["unstable"], optional = true }
futures-channel = { version = "0.3", features = ["sink"] }
futures-util = { version = "0.3", features = ["sink"] }
tokio = { version = "1", features = [
"rt",
"rt-multi-thread",
"time",
], optional = true }
async-std = { version = "1.0", features = ["unstable"], optional = true }
actix-rt = { version = "1", optional = true }
async-trait = "0.1"
futures-timer = "3.0.2"
log = "0.4"
thiserror = "1.0"
metrics = "0.22.1"
metrics = { version = "0.22.1", default-features = false }
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = "0.3.11"

Expand Down

0 comments on commit 29e7e97

Please sign in to comment.