Skip to content

Commit f751497

Browse files
committed
use wkg.lock instead of Cargo-component.lock
1 parent 4d153c4 commit f751497

File tree

18 files changed

+321
-1765
lines changed

18 files changed

+321
-1765
lines changed

Cargo.lock

Lines changed: 82 additions & 168 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,14 @@ url = { workspace = true }
4646
wasi-preview1-component-adapter-provider = { workspace = true }
4747
wasm-metadata = { workspace = true }
4848
wasm-pkg-client = { workspace = true }
49+
wasm-pkg-core = { workspace = true }
4950
wasmparser = { workspace = true }
5051
which = { workspace = true }
5152
wit-bindgen-core = { workspace = true }
5253
wit-bindgen-rust = { workspace = true }
5354
wit-component = { workspace = true }
5455
wit-parser = { workspace = true }
56+
terminal-link = "0.1.0"
5557

5658
[dev-dependencies]
5759
assert_cmd = { workspace = true }
@@ -106,16 +108,17 @@ warg-crypto = "0.9.0"
106108
warg-protocol = "0.9.0"
107109
warg-server = "0.9.0"
108110
wasi-preview1-component-adapter-provider = "24"
109-
wasm-metadata = "0.216.0"
110-
wasm-pkg-client = "0.8.0"
111-
wasmparser = "0.216.0"
112-
wasmprinter = "0.216.0"
113-
wat = "1.216.0"
111+
wasm-metadata = "0.219.0"
112+
wasm-pkg-client = { path = "../wasm-pkg-tools/crates/wasm-pkg-client" }
113+
wasm-pkg-core = { path = "../wasm-pkg-tools/crates/wasm-pkg-core" }
114+
wasmparser = "0.219.0"
115+
wasmprinter = "0.219.0"
116+
wat = "1.219.0"
114117
which = "6.0.1"
115-
wit-bindgen-core = "0.31.0"
116-
wit-bindgen-rust = "0.31.0"
117-
wit-component = "0.216.0"
118-
wit-parser = "0.216.0"
118+
wit-bindgen-core = "0.34.0"
119+
wit-bindgen-rust = "0.34.0"
120+
wit-component = "0.219.0"
121+
wit-parser = "0.219.0"
119122

120123
[profile.release]
121124
panic = "abort"

crates/core/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ toml_edit = { workspace = true }
2626
unicode-width = { workspace = true }
2727
url = { workspace = true }
2828
wasm-pkg-client = { workspace = true }
29+
wasm-pkg-core = { workspace = true }
2930
wit-component = { workspace = true }
3031
wit-parser = { workspace = true }
3132

crates/core/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ use semver::VersionReq;
1010
use wasm_pkg_client::PackageRef;
1111

1212
pub mod command;
13-
pub mod lock;
1413
pub mod progress;
15-
pub mod registry;
1614
pub mod terminal;
1715

1816
/// The root directory name used for default cargo component directories

0 commit comments

Comments
 (0)