[TEM #1] - Remove dependency on aha-corasick

pull/3/head
sgoudham 2 years ago
parent 913d8edd7a
commit 53da878bf3
Signed by: hammy
GPG Key ID: 44E818FD5457EEA4

@ -27,5 +27,4 @@ anyhow = "1.0.57"
env_logger = "0.9.0" env_logger = "0.9.0"
log = "0.4.16" log = "0.4.16"
lazy_static = "1.4.0" lazy_static = "1.4.0"
fancy-regex = "0.10.0" fancy-regex = "0.10.0"
aho-corasick = "0.7.18"

@ -2,9 +2,8 @@ use std::collections::{HashMap, VecDeque};
use std::fs; use std::fs;
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use aho_corasick::AhoCorasick; use anyhow::Context;
use anyhow::{Context, Error}; use fancy_regex::{CaptureMatches, Captures, Regex};
use fancy_regex::{CaptureMatches, Captures, Match, Regex};
use lazy_static::lazy_static; use lazy_static::lazy_static;
use mdbook::errors::Result; use mdbook::errors::Result;
@ -195,7 +194,7 @@ impl<'a> Iterator for TemplateArgsIter<'a> {
type Item = (&'a str, &'a str); type Item = (&'a str, &'a str);
fn next(&mut self) -> Option<Self::Item> { fn next(&mut self) -> Option<Self::Item> {
for cap in &mut self.0 { if let Some(cap) = (&mut self.0).next() {
let mut split_args = cap.unwrap().get(0).unwrap().as_str().splitn(2, '='); let mut split_args = cap.unwrap().get(0).unwrap().as_str().splitn(2, '=');
let key = split_args.next().unwrap().trim(); let key = split_args.next().unwrap().trim();
let value = split_args.next().unwrap(); let value = split_args.next().unwrap();

Loading…
Cancel
Save