Replace linked_hash_map with hashlink

This commit is contained in:
larkbyte 2020-05-26 18:35:06 +08:00 committed by Ethiraric
parent ef1a2d1d5c
commit e1119bb3bf
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ edition = "2021"
[dependencies]
arraydeque = "0.5.1"
linked-hash-map = "0.5.3"
hashlink = "0.8"
[dev-dependencies]
libtest-mimic = "0.3.0"

View file

@ -43,7 +43,7 @@
)
)]
extern crate linked_hash_map;
extern crate hashlink;
pub(crate) mod char_traits;
#[macro_use]

View file

@ -2,7 +2,7 @@
use std::{collections::BTreeMap, convert::TryFrom, mem, ops::Index};
use linked_hash_map::LinkedHashMap;
use hashlink::LinkedHashMap;
use crate::parser::{Event, MarkedEventReceiver, Parser, Tag};
use crate::scanner::{Marker, ScanError, TScalarStyle};