1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 18:24:05 +02:00

Merge pull request #3 from MarkDDR/master

Made various modules public
This commit is contained in:
Robin Appelman 2021-08-29 14:31:12 +00:00 committed by GitHub
commit b67942ac74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -1,3 +1,3 @@
mod userinfo; pub mod userinfo;
pub use userinfo::UserInfo; pub use userinfo::UserInfo;

View file

@ -11,12 +11,12 @@ pub use crate::demo::parser::handler::{DemoHandler, MessageHandler, NullHandler}
pub use crate::demo::parser::state::ParserState; pub use crate::demo::parser::state::ParserState;
use crate::Stream; use crate::Stream;
mod analyser; pub mod analyser;
mod error; pub mod error;
pub mod gamestateanalyser; pub mod gamestateanalyser;
pub mod handler; pub mod handler;
mod messagetypeanalyser; pub mod messagetypeanalyser;
mod state; pub mod state;
pub use self::error::*; pub use self::error::*;
use crate::demo::parser::handler::BorrowMessageHandler; use crate::demo::parser::handler::BorrowMessageHandler;

View file

@ -11,7 +11,7 @@ pub use crate::demo::{
pub(crate) mod consthash; pub(crate) mod consthash;
pub mod demo; pub mod demo;
mod nullhasher; pub(crate) mod nullhasher;
#[cfg(test)] #[cfg(test)]
#[track_caller] #[track_caller]