From d36d3300d0858fa898357594624a13a3e957b1e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jind=C5=99ich=20Moravec?= Date: Mon, 5 Feb 2024 23:42:06 +0100 Subject: [PATCH] fix: add missing features --- minisql/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/minisql/Cargo.toml b/minisql/Cargo.toml index 2879cd5..7cef722 100644 --- a/minisql/Cargo.toml +++ b/minisql/Cargo.toml @@ -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" } diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 7c95380..9675904 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -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"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 00ab655..c1c54b9 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -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" }