Skip to content

Commit

Permalink
Add validation when publishing + checking the publishing username
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Dec 13, 2022
1 parent 050324b commit 41a54b6
Show file tree
Hide file tree
Showing 18 changed files with 1,796 additions and 30 deletions.
62 changes: 60 additions & 2 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ members = [
"lib/wasi-types",
"lib/wasi-experimental-io-devices",
"lib/wasi-local-networking",
"lib/wasm-interface",
"lib/c-api/tests/wasmer-c-api-test-runner",
"lib/c-api/examples/wasmer-capi-examples-runner",
"lib/types",
Expand Down
4 changes: 3 additions & 1 deletion lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ wasmer-types = { version = "=3.1.0", path = "../types" }
wasmer-registry = { version = "=3.1.0", path = "../registry" }
wasmer-object = { version = "=3.1.0", path = "../object", optional = true }
wasmer-vfs = { version = "=3.1.0", path = "../vfs", default-features = false, features = ["host-fs"] }
wasmer-wasm-interface = { version = "3.0.1", path = "../wasm-interface" }
wasmparser = "0.51.4"
atty = "0.2"
colored = "2.0"
anyhow = "1.0"
Expand Down Expand Up @@ -78,7 +80,7 @@ cargo_metadata = "0.15.2"
rusqlite = { version = "0.28.0", features = ["bundled"] }
tar = "0.4.38"
thiserror = "1.0.37"
time = { version = "0.3.17", default-features = false, features = ["parsing"] }
time = { version = "0.3.17", default-features = false, features = ["parsing", "std", "formatting"] }
log = "0.4.17"
minisign = "0.7.2"
semver = "1.0.14"
Expand Down
Loading

0 comments on commit 41a54b6

Please sign in to comment.