-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable avail-light-core wasm compilation
- Loading branch information
1 parent
df7d0c4
commit 6d471bf
Showing
3 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,34 @@ | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod api; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod app_client; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
#[cfg(feature = "crawl")] | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod crawl_client; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod data; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod fat_client; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod finality; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod light_client; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod maintenance; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod network; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod proof; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod shutdown; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod sync_client; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod sync_finality; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod telemetry; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod types; | ||
#[cfg(not(target_arch = "wasm32"))] | ||
pub mod utils; |