chore: cleanup tokio features

This commit is contained in:
Jindřich Moravec 2024-02-05 23:31:14 +01:00
parent f88ba24dc4
commit 09fa982913
5 changed files with 7 additions and 84 deletions

View file

@ -6,11 +6,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { workspace = true, features = ["full"] }
anyhow = { workspace = true }
clap = { workspace = true, features = ["derive"] }
async-trait = { workspace = true }
clap = { workspace = true, features = ["derive"] }
rand = { workspace = true }
tokio = { workspace = true, features = ["io-util", "macros", "net", "rt-multi-thread"] }
minisql = { path = "../minisql" }
parser = { path = "../parser" }