From a7fca989399bbc8d4ce1dae8e8ddb47ff1413748 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Thu, 29 Aug 2024 21:02:23 +0400 Subject: [PATCH] style: reorganize/cleanup Cargo.toml --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cf4fc4c..0e69225 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,18 +14,18 @@ base16ct = "0.2.0" base64ct = "1.6.0" sha2 = "0.10.8" +async-trait = "0.1.81" num_enum = "0.7.3" bytes = "1.7.1" mime = "0.3.17" url = "2.5.2" -tokio = { version = "1.39.2", features = ["io-util", "net"] } +tokio = { version = "1.39.2", default-features = false, features = ["io-util", "net"] } tokio-rustls = { version = "0.26.0", default-features = false, features = ["ring"] } +rustls-webpki = "0.102.7" dashmap = { version = "6.0.1", optional = true } hickory-client = { version = "0.24.1", optional = true } -async-trait = "0.1.81" -rustls-webpki = "0.102.7" [dev-dependencies] tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] } @@ -47,4 +47,4 @@ path = "examples/simple.rs" [[example]] name = "main" path = "examples/main.rs" -required-features = ["file-sscv", "hickory"] +required-features = ["file-sscv", "dane"]