Skip to content

Commit

Permalink
Fix issue "identity_iota_core not compilable using --no-default-featu…
Browse files Browse the repository at this point in the history
…res"
  • Loading branch information
chrisgitiota committed Jan 9, 2025
1 parent a22dd33 commit 59be0ac
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions identity_iota_core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,18 @@ pub use self::error::Error;
pub use self::error::Result;

mod did;
#[cfg(feature = "iota-client")]
mod did_resolution;
mod document;
mod error;
mod iota_interaction_adapter;
mod network;
#[cfg(feature = "iota-client")]
/// Contains the rebased Identity and the interaction with the IOTA Client.
pub mod rebased;
mod state_metadata;

#[cfg(not(target_arch = "wasm32"))]
#[cfg(feature = "iota-client")]
mod did_resolution;
#[cfg(feature = "iota-client")]
mod iota_interaction_adapter;
#[cfg(all(feature = "iota-client", not(target_arch = "wasm32")))]
/// IOTA Rust SDK based implementation of the identity_iota_interaction interface for non wasm targets.
mod iota_interaction_rust;
#[cfg(feature = "iota-client")]
/// Contains the rebased Identity and the interaction with the IOTA Client.
pub mod rebased;

0 comments on commit 59be0ac

Please sign in to comment.