Skip to content

Commit

Permalink
support dependencies across multiple namespaces in wit and cargo comp…
Browse files Browse the repository at this point in the history
…onent
  • Loading branch information
macovedj committed Apr 17, 2024
1 parent 9ef9317 commit d8030c3
Show file tree
Hide file tree
Showing 24 changed files with 651 additions and 290 deletions.
89 changes: 61 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ bytes = { workspace = true }
which = { workspace = true }
shell-escape = "0.1.5"
secrecy = { workspace = true }
dialoguer = { wokerspace = true }

[dev-dependencies]
assert_cmd = { workspace = true }
Expand All @@ -68,11 +69,11 @@ members = ["crates/core", "crates/wit"]

[workspace.dependencies]
cargo-component-core = { path = "crates/core", version = "0.10.1" }
warg-protocol = "0.4.1"
warg-crypto = "0.4.1"
warg-client = "0.4.1"
warg-credentials = "0.4.1"
warg-server = "0.4.1"
warg-protocol = { git = "https://github.com/bytecodealliance/registry", branch = "namespace-enhancements" }
warg-crypto = { git = "https://github.com/bytecodealliance/registry", branch = "namespace-enhancements" }
warg-client = { git = "https://github.com/bytecodealliance/registry", branch = "namespace-enhancements" }
warg-credentials = { git = "https://github.com/bytecodealliance/registry", branch = "namespace-enhancements" }
warg-server = { git = "https://github.com/bytecodealliance/registry", branch = "namespace-enhancements" }
anyhow = "1.0.80"
clap = { version = "4.5.1", features = ["derive"] }
toml_edit = { version = "0.22.6", features = ["serde"] }
Expand All @@ -90,6 +91,7 @@ wit-parser = "0.202.0"
wit-component = "0.202.0"
wasm-metadata = "0.202.0"
parse_arg = "0.1.4"
dialoguer = "0.11.0"
cargo_metadata = "0.18.1"
cargo-config2 = "0.1.19"
libc = "0.2.153"
Expand Down
1 change: 1 addition & 0 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ log = { workspace = true }
tokio = { workspace = true }
secrecy = { workspace = true }
clap = { workspace = true }
thiserror = "1.0.58"

[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.52"
Expand Down
Loading

0 comments on commit d8030c3

Please sign in to comment.