Skip to content

Commit

Permalink
Export more modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
vikpe committed Jun 9, 2024
1 parent 0152523 commit a884b90
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ categories = ["parsing"]
keywords = ["demos", "mvd", "parser", "quake", "quakeworld"]
repository = "https://github.com/vikpe/mvdparser"
authors = ["Viktor Persson <viktor.persson@arcsin.se>"]
version = "0.11.0"
version = "0.11.1"
edition = "2021"
license = "MIT"
include = [
Expand Down
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ pub use crate::teams::teams;
pub use crate::timestamp::timestamp;

pub mod all {
pub use crate::client::*;
pub use crate::clientinfo::*;
pub use crate::clients::*;
pub use crate::duration::*;
Expand All @@ -26,9 +27,12 @@ pub mod all {
pub use crate::ktxstats::*;
pub use crate::matchdate::*;
pub use crate::ping::*;
pub use crate::player::*;
pub use crate::players::*;
pub use crate::prints::*;
pub use crate::server::*;
pub use crate::serverinfo::*;
pub use crate::team::*;
pub use crate::teams::*;
pub use crate::timestamp::*;
}
Expand Down

0 comments on commit a884b90

Please sign in to comment.