fix: add missing features

This commit is contained in:
Jindřich Moravec 2024-02-05 23:42:06 +01:00
parent 09fa982913
commit d36d3300d0
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ bincode = { workspace = true }
serde = { workspace = true, features = ["derive", "rc"] }
serde_json = "1.0.113"
thiserror = { workspace = true }
tokio = { workspace = true, features = ["macros"] }
tokio = { workspace = true, features = ["macros", "sync"] }
proto = { path = "../proto" }
storage_engine = { path = "../storage_engine" }

View file

@ -10,4 +10,4 @@ rand = { workspace = true }
rand_pcg = "0.3.1"
rand_seeder = "0.2.3"
thiserror = { workspace = true }
tokio = { workspace = true, features = ["io-util", "macros", "test-util"] }
tokio = { workspace = true, features = ["io-util", "macros"] }

View file

@ -10,7 +10,7 @@ anyhow = { workspace = true }
async-trait = { workspace = true }
clap = { workspace = true, features = ["derive"] }
rand = { workspace = true }
tokio = { workspace = true, features = ["io-util", "macros", "net", "rt-multi-thread"] }
tokio = { workspace = true, features = ["io-util", "macros", "net", "rt-multi-thread", "time"] }
minisql = { path = "../minisql" }
parser = { path = "../parser" }