From d6db194a1ad37ea1ce2b31686c7c8920e8e21ca8 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Fri, 9 Aug 2024 17:39:40 +0400 Subject: [PATCH] style: move "example" sections in manifest to bottom --- Cargo.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4f7c73c..3502619 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,6 +25,13 @@ webpki-roots = { version = "0.26.3", optional = true } dashmap = { version = "6.0.1", optional = true } +[dev-dependencies] +tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] } + +[features] +webpki = ["dep:webpki-roots"] +file-sscv = ["dep:dashmap", "tokio/fs"] + [[example]] name = "simple" path = "examples/simple.rs" @@ -33,10 +40,3 @@ path = "examples/simple.rs" name = "main" path = "examples/main.rs" required-features = ["file-sscv"] - -[dev-dependencies] -tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] } - -[features] -webpki = ["dep:webpki-roots"] -file-sscv = ["dep:dashmap", "tokio/fs"]