Eliminate dependency on serde's "derive" feature

This commit is contained in:
David Tolnay
2023-12-28 14:38:35 -08:00
parent 95993cf37e
commit 1a54c9bf6d
6 changed files with 24 additions and 24 deletions

View File

@ -10,7 +10,7 @@ use indexmap::IndexMap;
use itertools::Itertools;
use once_cell::sync::Lazy;
use regex::Regex;
use serde::Deserialize;
use serde_derive::Deserialize;
use serde_with::DeserializeFromStr;
use walkdir::WalkDir;