Skip to content

Commit

Permalink
fix private type visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
miraclx committed Aug 22, 2022
1 parent 1c1b00f commit f1c6ea9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ schemars = "0.8.8"
serde_json = "1"

[features]
chunked-entries = []
__chunked-entries = []
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use std::collections::HashMap;

#[cfg(feature = "chunked-entries")]
mod private;
#[cfg(feature = "chunked-entries")]
pub use private::{AbiCombineError, AbiCombineErrorKind, ChunkedAbiEntry};
#[doc(hidden)]
#[cfg(feature = "__chunked-entries")]
#[path = "private.rs"]
pub mod __private;

use borsh::schema::{BorshSchemaContainer, Declaration, Definition, Fields, VariantName};
use schemars::schema::{RootSchema, Schema};
Expand Down

0 comments on commit f1c6ea9

Please sign in to comment.