Skip to content

Commit

Permalink
Merge #497
Browse files Browse the repository at this point in the history
497: update wapm to latest master r=MarkMcCaskey a=MarkMcCaskey



Co-authored-by: Mark McCaskey <[email protected]>
  • Loading branch information
bors[bot] and Mark McCaskey committed Jun 17, 2019
2 parents 0f81cd4 + b213500 commit 8f842a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wapm-cli
Submodule wapm-cli updated 52 files
+512 −202 Cargo.lock
+10 −2 Cargo.toml
+23 −4 azure-pipelines.yml
+11 −0 end-to-end-tests/verification.sh
+21 −0 end-to-end-tests/verification.txt
+9 −0 graphql/queries/get_contract_version.graphql
+0 −11 graphql/queries/get_package_version_manifest.graphql
+13 −0 graphql/queries/get_packages.graphql
+2 −1 graphql/queries/publish_package.graphql
+16 −0 graphql/queries/publish_public_key.graphql
+86 −2 graphql/schema.graphql
+19 −0 lib/wasm-contract/Cargo.toml
+88 −0 lib/wasm-contract/README.md
+160 −0 lib/wasm-contract/src/contract.rs
+11 −0 lib/wasm-contract/src/lib.rs
+544 −0 lib/wasm-contract/src/parser.rs
+432 −0 lib/wasm-contract/src/validate.rs
+11 −0 src/abi.rs
+7 −0 src/bin/wapm.rs
+203 −0 src/commands/keys.rs
+2 −0 src/commands/mod.rs
+83 −3 src/commands/publish.rs
+6 −0 src/config.rs
+65 −0 src/contracts.rs
+42 −1 src/data/manifest.rs
+132 −0 src/database.rs
+42 −0 src/dataflow/contracts.rs
+165 −4 src/dataflow/installed_packages.rs
+1 −0 src/dataflow/mod.rs
+86 −36 src/dataflow/resolved_packages.rs
+1 −0 src/graphql.rs
+388 −0 src/keys.rs
+4 −0 src/lib.rs
+27 −0 src/sql/migrations/0000.sql
+9 −0 src/sql/migrations/0001.sql
+145 −0 src/sql/mod.rs
+2 −0 src/sql/queries/delete_personal_key_pair.sql
+4 −0 src/sql/queries/get_contract.sql
+6 −0 src/sql/queries/get_latest_public_key_for_user.sql
+3 −0 src/sql/queries/get_personal_keys.sql
+4 −0 src/sql/queries/get_wapm_public_keys.sql
+8 −0 src/sql/queries/insert_and_activate_personal_key_pair.sql
+3 −0 src/sql/queries/insert_contract.sql
+3 −0 src/sql/queries/insert_user.sql
+14 −0 src/sql/queries/insert_wapm_public_key.sql
+3 −0 src/sql/queries/personal_private_key_value_existence_check.sql
+4 −0 src/sql/queries/personal_public_key_value_existence_check.sql
+3 −0 src/sql/queries/private_key_location_exists.sql
+5 −0 src/sql/queries/wapm_public_key_existence_check.sql
+5 −0 src/sql/queries/wasm_contract_existence_check.sql
+14 −0 src/util.rs
+36 −82 src/validate.rs

0 comments on commit 8f842a3

Please sign in to comment.