From dedef113dd774abab7413b8246d052deaeedd4ec Mon Sep 17 00:00:00 2001 From: parazyd Date: Thu, 23 Sep 2021 11:59:49 +0200 Subject: [PATCH] bin/drk: tokio -> async_std. --- src/bin/drk.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/drk.rs b/src/bin/drk.rs index dd1f07e50..0db95f6e1 100644 --- a/src/bin/drk.rs +++ b/src/bin/drk.rs @@ -214,7 +214,7 @@ async fn start(config: &DrkConfig, options: ArgMatches<'_>) -> Result<()> { Err(Error::MissingParams) } -#[tokio::main] +#[async_std::main] async fn main() -> Result<()> { let args = clap_app!(drk => (@arg CONFIG: -c --config +takes_value "Sets a custom config file")