diff --git a/Cargo.toml b/Cargo.toml index ca3d280..0afbfdd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "wildmatch" version = "2.2.0" authors = ["Armin Becher "] edition = "2018" -description = "Simple string matching with questionmark and star wildcard operator." +description = "Simple string matching with single- and multi-character wildcard operator." keywords = ["globbing", "matching", "questionmark", "star", "string-matching"] readme = "README.md" license = "MIT" @@ -11,13 +11,13 @@ categories = ["algorithms"] repository = "https://github.com/becheran/wildmatch" [dependencies] -serde = { version = "1.0", features = ["derive"], optional = true } +serde = { version = "1.0", default-features = false, features = ["derive"], optional = true } [dev-dependencies] -ntest = "0.7.3" -criterion = "0.3.4" -regex = "1.4.3" -glob = "0.3.0" +ntest = { version = "0.7.3", default-features = false } +criterion = { version = "0.3.4", default-features = false } +regex = { version = "1.4.3", default-features = false } +glob = { version = "0.3.0", default-features = false } [features] serde = ["dep:serde"]