Skip to content

Commit 4b2140d

Browse files
committed
chore: enable multi-threaded runtime for Tokio and require rusqlite
- Updated Tokio dependency to version 1.15 with the rt-multi-thread feature enabled. - Removed from rusqlite so that it is now a required dependency.
1 parent 4be2a4b commit 4b2140d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

testnet/stacks-node/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ tikv-jemallocator = {workspace = true}
3838

3939
[dev-dependencies]
4040
warp = "0.3.5"
41-
tokio = "1.15"
41+
tokio = { version = "1.15", features = ["rt-multi-thread"] }
4242
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls", "rustls-tls"] }
4343
clarity = { path = "../../clarity", features = ["default", "testing"]}
4444
stacks-common = { path = "../../stacks-common", features = ["default", "testing"] }
@@ -56,7 +56,6 @@ serial_test = "3.2.0"
5656
[dependencies.rusqlite]
5757
workspace = true
5858
features = ["blob", "serde_json", "i128_blob", "bundled", "trace"]
59-
optional = true
6059

6160
[[bin]]
6261
name = "stacks-node"

0 commit comments

Comments
 (0)