Skip to content

Commit

Permalink
Merge pull request #13 from hoijui/master
Browse files Browse the repository at this point in the history
Disable dependencies default features
  • Loading branch information
becheran authored Dec 22, 2023
2 parents 578647e + 8559d00 commit afab6be
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ name = "wildmatch"
version = "2.2.0"
authors = ["Armin Becher <armin.becher@gmail.com>"]
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"
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"]
Expand Down

0 comments on commit afab6be

Please sign in to comment.