Revert "Tokio"

This reverts commit fa8969d6a2.
This commit is contained in:
lukas0008
2024-08-07 20:44:04 +02:00
parent 873df335b8
commit 7891d2848d
4 changed files with 3 additions and 19 deletions

13
Cargo.lock generated
View File

@@ -1177,7 +1177,6 @@ dependencies = [
"sha1",
"simple_logger",
"thiserror",
"tokio",
"toml",
"uuid",
]
@@ -1789,21 +1788,9 @@ dependencies = [
"mio",
"pin-project-lite",
"socket2",
"tokio-macros",
"windows-sys 0.52.0",
]
[[package]]
name = "tokio-macros"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.72",
]
[[package]]
name = "tokio-native-tls"
version = "0.3.1"

View File

@@ -8,6 +8,3 @@ edition = "2021"
[profile.release]
lto = true
[workspace.dependencies]
tokio = { version = "1.39.2", features = ["net", "macros", "rt-multi-thread", "fs", "io-util"] }

View File

@@ -49,4 +49,5 @@ crossbeam-channel = "0.5.13"
uuid = { version = "1.10", features = ["serde"]}
tokio.workspace = true

View File

@@ -23,8 +23,7 @@ pub mod server;
pub mod util;
#[cfg(not(target_os = "wasi"))]
#[tokio::main]
async fn main() -> io::Result<()> {
fn main() -> io::Result<()> {
use std::{cell::RefCell, time::Instant};
let time = Instant::now();