Skip to content

Commit

Permalink
chore: dependencies: remove tokio's "sync" feature ( unused ) (#260)
Browse files Browse the repository at this point in the history
* chore: remove unused feature tokio/sync

* enable tokio/sync in graceful
  • Loading branch information
kanarus authored Aug 28, 2024
1 parent c224908 commit 950097a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ohkami/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ features = ["rt_tokio", "nightly", "sse", "ws"]
ohkami_lib = { version = "=0.2.5", path = "../ohkami_lib" }
ohkami_macros = { version = "=0.8.0", path = "../ohkami_macros" }

tokio = { version = "1", optional = true, features = ["net", "rt", "io-util", "sync", "time"] }
tokio = { version = "1", optional = true, features = ["net", "rt", "io-util", "time"] }
async-std = { version = "1", optional = true }
smol = { version = "2", optional = true }
glommio = { version = "0.9", optional = true }
Expand Down Expand Up @@ -54,7 +54,7 @@ nightly = []
testing = []
sse = ["ohkami_lib/stream"]
ws = ["dep:sha1"]
graceful = ["rt_tokio", "tokio/signal", "tokio/macros"]
graceful = ["tokio?/sync", "tokio?/signal", "tokio?/macros"]
ip = []

##### internal #####
Expand Down

0 comments on commit 950097a

Please sign in to comment.