Replace linked_hash_map with hashlink
This commit is contained in:
parent
ef1a2d1d5c
commit
e1119bb3bf
3 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
)
|
||||
)]
|
||||
|
||||
extern crate linked_hash_map;
|
||||
extern crate hashlink;
|
||||
|
||||
pub(crate) mod char_traits;
|
||||
#[macro_use]
|
||||
|
|
|
@ -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};
|
||||
|
|
Loading…
Reference in a new issue