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"]