1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-08-10 05:59:25 +02:00

globset: Implement serde::{Serialize, Deserialize} for Glob

PR #1492
This commit is contained in:
Lucien Greathouse
2020-02-21 04:40:47 -08:00
committed by GitHub
parent eef7a7e7ff
commit db7a8cdcb5
5 changed files with 53 additions and 0 deletions

View File

@@ -24,10 +24,13 @@ bstr = { version = "0.2.0", default-features = false, features = ["std"] }
fnv = "1.0.6"
log = "0.4.5"
regex = "1.1.5"
serde = { version = "1.0.104", optional = true }
[dev-dependencies]
glob = "0.3.0"
lazy_static = "1"
serde_json = "1.0.45"
[features]
simd-accel = []
serde1 = ["serde"]