feat: Switch from smol runtime to tokio

This commit is contained in:
Michael Aaron Murphy 2022-03-27 17:38:37 +02:00 committed by Michael Murphy
parent 4153f9f060
commit dbfb3921ae
23 changed files with 242 additions and 235 deletions

View file

@ -20,7 +20,6 @@ ron = "0.7.0"
serde = "1.0.136"
serde_json = "1.0.79"
slab = "0.4.5"
smol = "1.2.5"
strsim = "0.10.0"
tracing = "0.1.32"
tracing-subscriber = "0.3.9"
@ -35,3 +34,7 @@ anyhow = "1.0.56"
flume = "0.10.12"
dirs = "4.0.0"
futures = "0.3.21"
[dependencies.tokio]
version = "1.17.0"
features = ["fs", "io-std", "macros", "process", "rt"]