-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compilation on newer nightly by removing unused feature of metric…
…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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
||
|