feat: make main tokio async
Some checks failed
Test / build (map[name:stable]) (push) Successful in 1m13s
Test / build (map[name:nightly]) (push) Successful in 1m37s
Release Please / Release-plz (push) Failing after 14s

This commit is contained in:
Paul Campbell 2024-11-29 14:31:40 +00:00
parent 27b8aa7e11
commit 8080bb2dde
2 changed files with 6 additions and 3 deletions

View file

@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
#bytes = "1.9"
#clap = { version = "4.5", features = ["cargo", "derive"] }
#color-eyre = "0.6"
color-eyre = "0.6"
#derive_more = { version = "1.0", features = [
# "as_ref",
# "constructor",
@ -18,7 +18,7 @@ edition = "2021"
## kxio = "3.1"
#serde = { version = "1.0", features = ["derive"] }
#serde_json = "1.0"
#tokio = { version = "1.41", features = ["full"] }
tokio = { version = "1.41", features = ["full"] }
#toml = "0.8"
#tracing= "0.1"
#tracing-subscriber = "0.3"

View file

@ -1,6 +1,9 @@
//
use color_eyre::Result;
#[tokio::main]
#[cfg_attr(test, mutants::skip)]
fn main() {
async fn main() -> Result<()> {
println!("Hello, world!");
Ok(())
}