Skip to content

Commit

Permalink
feat: Make client and server public
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish committed Mar 29, 2024
1 parent 6dfe3da commit d9209b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MIT OR Apache-2.0"
name = "minidumper-child"
readme = "README.md"
repository = "https://github.com/timfish/minidumper-child"
version = "0.2.1"
version = "0.2.2"

[dependencies]
crash-handler = "0.6"
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use std::{
sync::Arc,
};

mod client;
mod server;
pub mod client;
pub mod server;

#[derive(thiserror::Error, Debug)]
pub enum Error {
Expand Down

0 comments on commit d9209b6

Please sign in to comment.