We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41ad124 commit d33434cCopy full SHA for d33434c
concurrency/Cargo.toml
@@ -10,7 +10,7 @@ spawned-rt = { workspace = true }
10
tracing = { workspace = true }
11
futures = "0.3.1"
12
thiserror = "2.0.12"
13
-pin-project-lite = "0.2"
+pin-project-lite = { version = "0.2", optional = true }
14
15
[dev-dependencies]
16
# This tokio imports are only used in tests, we should not use them in the library code.
@@ -22,4 +22,4 @@ path = "./src/lib.rs"
22
23
[features]
24
# Enable this to log warnings when non-blocking GenServers block the runtime for too much time
25
-warn-on-block = []
+warn-on-block = ["dep:pin-project-lite"]
0 commit comments