Skip to content
Merged
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
73 changes: 73 additions & 0 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ native = [
"dep:ssh-key",
"dep:futures",
"dep:tokio-util",
"dep:flate2",
"dep:tar",
"dep:zip",
Comment thread
platinummonkey marked this conversation as resolved.
]
wasi = [
"dep:datadog-api-client",
Expand Down Expand Up @@ -126,6 +129,9 @@ russh = { version = "0.61", optional = true }
ssh-key = { version = "0.6", features = ["p256", "std"], optional = true }
futures = { version = "0.3", optional = true }
tokio-util = { version = "0.7", features = ["compat", "io"], optional = true }
flate2 = { version = "1", optional = true }
tar = { version = "0.4", optional = true }
zip = { version = "8", default-features = false, features = ["deflate"], optional = true }

# Datadog API client — pinned to 0.32.0 tag
# Use default-features = false; feature sets are activated per-target via features above
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@ The `pup auth status` command works in WASM and reports which credentials are co

- No local token storage (keychain/file) — use `DD_ACCESS_TOKEN` or API keys
- No browser-based OAuth login flow
- Extensions are not included in WASM builds; `pup extension ...` and installed extension dispatch are native-only
- Networking relies on the host runtime's networking capabilities

### Running with Wasmtime
Expand Down
Loading