1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-04 02:24:12 +02:00
This commit is contained in:
Robin Appelman 2020-03-05 23:31:08 +01:00
commit 8f2c732945
22 changed files with 83 additions and 83 deletions

View file

@ -1,18 +1,18 @@
use bitbuffer::{BitRead, LittleEndian};
use bitbuffer::{BitRead};
use crate::demo::parser::MalformedSendPropDefinitionError;
use crate::demo::sendprop::{
SendPropDefinition, SendPropDefinitionIndex, SendPropFlag, SendPropName, SendPropType,
};
use crate::{Parse, ParseError, ParserState, ReadResult, Result, Stream};
use crate::{Parse, ParseError, ParserState, Result, Stream};
use parse_display::{Display, FromStr};
use serde::{Deserialize, Serialize};
use std::borrow::Borrow;
use std::cell::{Cell, RefCell};
use std::cmp::min;
use std::fmt;
use std::num::ParseIntError;
use std::ops::Deref;
use std::rc::Rc;
#[derive(BitRead, Debug, Clone, Copy, PartialEq, Eq, Hash, Ord, PartialOrd, Display, FromStr)]

View file

@ -1,6 +1,6 @@
use bitbuffer::BitRead;
use num_enum::TryFromPrimitive;
use std::convert::TryFrom;
use crate::{Parse, ParserState, Result, Stream};