Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::ops::Range;
use std::sync::atomic::{AtomicBool, Ordering};
use topologic::AcyclicDependencyGraph;
use wit_component::{ComponentEncoder, StringEncoding};
use wit_parser::{PackageId, PackageName, Resolve, WorldId};
use wit_parser::{PackageId, Resolve, WorldId};

mod moonc_wasm;

Expand All @@ -25,6 +25,8 @@ pub mod get_script;
#[cfg(feature = "typed-config")]
pub mod typed_config;

pub use wit_parser::PackageName;

static MOONBIT_CORE: Dir<'_> = include_dir!("$CARGO_MANIFEST_DIR/bundled-core");

#[derive(Default)]
Expand Down
Loading