Skip to content
Open
Show file tree
Hide file tree
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
1,082 changes: 691 additions & 391 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@ url = { workspace = true }
wasi-preview1-component-adapter-provider = { workspace = true }
wasm-metadata = { workspace = true }
wasm-pkg-client = { workspace = true }
wasm-pkg-core = { workspace = true }
wasmparser = { workspace = true }
which = { workspace = true }
wit-bindgen-core = { workspace = true }
wit-bindgen-rust = { workspace = true }
wit-component = { workspace = true }
wit-parser = { workspace = true }
terminal-link = "0.1.0"

[dev-dependencies]
assert_cmd = { workspace = true }
Expand Down Expand Up @@ -107,7 +109,8 @@ warg-protocol = "0.9.0"
warg-server = "0.9.0"
wasi-preview1-component-adapter-provider = "24"
wasm-metadata = "0.220.0"
wasm-pkg-client = "0.8.0"
wasm-pkg-client = { path = "../wasm-pkg-tools/crates/wasm-pkg-client" }
wasm-pkg-core = { path = "../wasm-pkg-tools/crates/wasm-pkg-core" }
wasmparser = "0.220.0"
wasmprinter = "0.220.0"
wat = "1.220.0"
Expand Down
1 change: 1 addition & 0 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ toml_edit = { workspace = true }
unicode-width = { workspace = true }
url = { workspace = true }
wasm-pkg-client = { workspace = true }
wasm-pkg-core = { workspace = true }
wit-component = { workspace = true }
wit-parser = { workspace = true }

Expand Down
2 changes: 0 additions & 2 deletions crates/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ use semver::VersionReq;
use wasm_pkg_client::PackageRef;

pub mod command;
pub mod lock;
pub mod progress;
pub mod registry;
pub mod terminal;

/// The root directory name used for default cargo component directories
Expand Down
Loading
Loading