From 0cd2b897586194afca08714216f1ed876d05754d Mon Sep 17 00:00:00 2001 From: Peter White <23270067+peterwht@users.noreply.github.com> Date: Tue, 11 Jun 2024 10:16:38 -0600 Subject: [PATCH] chore: update links and references to Use Ink (#2248) * chore: update refs to use-ink * docs: update SECURITY.md and README.md * chore: update toml keywords * chore: update CHANGELOG.md --- CHANGELOG.md | 4 ++-- CODE_OF_CONDUCT.adoc | 2 +- Cargo.toml | 6 +++--- README.md | 5 ++--- SECURITY.md | 6 +----- crates/allocator/Cargo.toml | 2 +- crates/e2e/sandbox/Cargo.toml | 2 +- crates/engine/Cargo.toml | 2 +- crates/env/Cargo.toml | 2 +- crates/env/src/api.rs | 2 +- crates/ink/Cargo.toml | 2 +- crates/ink/codegen/Cargo.toml | 2 +- crates/ink/ir/Cargo.toml | 2 +- crates/ink/macro/Cargo.toml | 2 +- crates/metadata/Cargo.toml | 2 +- crates/prelude/Cargo.toml | 2 +- crates/primitives/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- .../internal/call-builder-return-value/Cargo.toml | 2 +- .../internal/e2e-runtime-only-backend/Cargo.toml | 2 +- .../internal/lang-err/call-builder-delegate/Cargo.toml | 2 +- .../internal/lang-err/call-builder/Cargo.toml | 2 +- .../lang-err/constructors-return-value/Cargo.toml | 2 +- .../internal/lang-err/contract-ref/Cargo.toml | 2 +- .../internal/lang-err/integration-flipper/Cargo.toml | 2 +- integration-tests/internal/mother/Cargo.toml | 2 +- .../internal/sr25519-verification/Cargo.toml | 2 +- integration-tests/public/call-runtime/Cargo.toml | 2 +- integration-tests/public/combined-extension/Cargo.toml | 2 +- .../public/conditional-compilation/Cargo.toml | 2 +- integration-tests/public/contract-storage/Cargo.toml | 2 +- integration-tests/public/contract-terminate/Cargo.toml | 2 +- integration-tests/public/contract-transfer/Cargo.toml | 2 +- integration-tests/public/contract-xcm/Cargo.toml | 2 +- integration-tests/public/cross-contract-calls/Cargo.toml | 2 +- .../public/cross-contract-calls/other-contract/Cargo.toml | 2 +- integration-tests/public/custom-allocator/Cargo.toml | 2 +- integration-tests/public/custom-environment/Cargo.toml | 2 +- integration-tests/public/dns/Cargo.toml | 2 +- integration-tests/public/e2e-call-runtime/Cargo.toml | 2 +- integration-tests/public/erc1155/Cargo.toml | 2 +- integration-tests/public/erc20/Cargo.toml | 2 +- integration-tests/public/erc721/Cargo.toml | 2 +- integration-tests/public/events/Cargo.toml | 2 +- integration-tests/public/flipper/Cargo.toml | 2 +- integration-tests/public/incrementer/Cargo.toml | 2 +- integration-tests/public/lazyvec/Cargo.toml | 2 +- integration-tests/public/mapping/Cargo.toml | 2 +- integration-tests/public/multi-contract-caller/Cargo.toml | 2 +- .../public/multi-contract-caller/accumulator/Cargo.toml | 2 +- .../public/multi-contract-caller/adder/Cargo.toml | 2 +- .../public/multi-contract-caller/subber/Cargo.toml | 2 +- integration-tests/public/multisig/Cargo.toml | 2 +- integration-tests/public/payment-channel/Cargo.toml | 2 +- integration-tests/public/psp22-extension/Cargo.toml | 2 +- integration-tests/public/rand-extension/Cargo.toml | 2 +- integration-tests/public/runtime-call-contract/Cargo.toml | 8 ++++---- .../sandbox-runtime/pallet-contract-caller/Cargo.toml | 2 +- .../public/runtime-call-contract/traits/Cargo.toml | 2 +- integration-tests/public/static-buffer/Cargo.toml | 2 +- .../public/trait-dyn-cross-contract-calls/Cargo.toml | 2 +- .../contracts/incrementer/Cargo.toml | 2 +- .../trait-dyn-cross-contract-calls/traits/Cargo.toml | 2 +- integration-tests/public/trait-erc20/Cargo.toml | 2 +- integration-tests/public/trait-flipper/Cargo.toml | 2 +- integration-tests/public/trait-incrementer/Cargo.toml | 2 +- .../public/trait-incrementer/traits/Cargo.toml | 2 +- .../public/upgradeable-contracts/delegator/Cargo.toml | 2 +- .../upgradeable-contracts/delegator/delegatee/Cargo.toml | 2 +- .../upgradeable-contracts/delegator/delegatee2/Cargo.toml | 2 +- .../set-code-hash-migration/Cargo.toml | 2 +- .../set-code-hash-migration/migration/Cargo.toml | 2 +- .../updated-incrementer/Cargo.toml | 2 +- .../public/upgradeable-contracts/set-code-hash/Cargo.toml | 2 +- .../set-code-hash/updated-incrementer/Cargo.toml | 2 +- integration-tests/public/wildcard-selector/Cargo.toml | 2 +- linting/Cargo.toml | 6 +++--- 77 files changed, 86 insertions(+), 91 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d05bcc7b6..3003444997 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - [Linter] Add links to detailed lint description ‒ [#2170](https://github.com/use-ink/ink/pull/2170) -- Add `xcm_execute` and `xcm_send` support - [#1912](https://github.com/paritytech/ink/pull/1912) +- Add `xcm_execute` and `xcm_send` support - [#1912](https://github.com/use-ink/ink/pull/1912) - Environment agnostic contract invocation API ‒ [#219](https://github.com/use-ink/ink/pull/2219) ### Changed - [E2E] Update `subxt` and `polkadot-sdk` dependencies ‒ [#2174](https://github.com/use-ink/ink/pull/2174) -- Update repository URLs from `paritytech` GitHub organization to new `use-ink` one ‒ [#2220](https://github.com/use-ink/ink/pull/2220) +- Update repository URLs & references from `paritytech` GitHub organization to new `use-ink` one ‒ [#2220](https://github.com/use-ink/ink/pull/2220) and [#2248](https://github.com/use-ink/ink/pull/2248) ### Fixed - Fix outdated docs for `[ink_e2e::test]` ‒ [#2162](https://github.com/use-ink/ink/pull/2162) diff --git a/CODE_OF_CONDUCT.adoc b/CODE_OF_CONDUCT.adoc index 811e83e9fa..10e98b566a 100644 --- a/CODE_OF_CONDUCT.adoc +++ b/CODE_OF_CONDUCT.adoc @@ -41,7 +41,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe == Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at admin@parity.io. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at ink@use.ink. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/Cargo.toml b/Cargo.toml index d747a3c3e1..de2485ba93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,11 +23,11 @@ exclude = [ ] [workspace.package] -authors = ["Use Ink "] +authors = ["Use Ink "] categories = ["no-std", "embedded"] edition = "2021" -homepage = "https://www.parity.io/" -keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"] +homepage = "https://use.ink" +keywords = ["wasm", "ink", "webassembly", "blockchain", "edsl"] license = "Apache-2.0" repository = "https://github.com/use-ink/ink" version = "5.0.0" diff --git a/README.md b/README.md index 02ff666ae0..398f8c3fe5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@
ink!

- Parity's ink! for writing smart contracts + Polkadot's ink! for writing smart contracts

[![linux][a1]][a2] [![codecov][c1]][c2] [![coveralls][d1]][d2] [![loc][e1]][e2] [![stack-exchange][s1]][s2] @@ -46,7 +46,7 @@ More relevant links: * [`cargo-contract`](https://github.com/use-ink/cargo-contract) ‒ CLI tool for ink! contracts * [Contracts UI](https://contracts-ui.substrate.io/) ‒ Frontend for contract instantiation and interaction * [Substrate Contracts Node](https://github.com/paritytech/substrate-contracts-node) ‒ Simple Substrate blockchain which includes smart contract functionality -* [Awesome ink!](https://github.com/use-ink/awesome-ink) - A curated list of awesome projects for Parity's ink! +* [Awesome ink!](https://github.com/use-ink/awesome-ink) - A curated list of awesome projects for Polkadot's ink! * We post announcements on [Matrix][k2] and [Discord][l2] (in the [`ink_smart-contracts`](https://discord.com/channels/722223075629727774/765280480609828864) channel). @@ -290,4 +290,3 @@ Use the scripts provided under `scripts/check-*` directory in order to run check The entire code within this repository is licensed under the [Apache License 2.0](LICENSE). -Please [contact us](https://www.parity.io/contact/) if you have questions about the licensing of our products. diff --git a/SECURITY.md b/SECURITY.md index 7a6cbe7ecc..e77ee0d7e9 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,8 +2,4 @@ If you find something that can be treated as a security vulnerability, please do not use the issue tracker or discuss it in the public forum/channels, as it can cause more damage rather than giving real help to the ecosystem. -Security vulnerabilities should be reported using [this contact form](https://security-submission.parity.io/). - -If you think that your report might be eligible for the Bug Bounty Program, please mark this during the submission. Please check up-to-date [Parity Bug Bounty Program rules](https://www.parity.io/bug-bounty) for more information about our Bug Bounty Program. - -**Warning:** This is an unified `SECURITY.md` file for the Paritytech GitHub Organization. The presence of this file does not mean that this repository is covered by the Bug Bounty program. Please always check the Bug Bounty Program scope for the information. +Security vulnerabilities should be reported using [this contact form](https://blocksurvey.io/ink-security-vulnerability-reporting-QCfzqPF8QMqIrJUEll7yPA?v=o). diff --git a/crates/allocator/Cargo.toml b/crates/allocator/Cargo.toml index bfdb5a64ab..3f7baad5fa 100644 --- a/crates/allocator/Cargo.toml +++ b/crates/allocator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_allocator" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true license.workspace = true diff --git a/crates/e2e/sandbox/Cargo.toml b/crates/e2e/sandbox/Cargo.toml index cb67b704f5..11492dd92d 100644 --- a/crates/e2e/sandbox/Cargo.toml +++ b/crates/e2e/sandbox/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_sandbox" version = "5.0.0" -authors = ["Use Ink ", "Cardinal Cryptography"] +authors = ["Use Ink ", "Cardinal Cryptography"] edition.workspace = true license.workspace = true description = "Sandbox runtime environment for ink! e2e tests" diff --git a/crates/engine/Cargo.toml b/crates/engine/Cargo.toml index 29a2fb7e1c..77971c336f 100644 --- a/crates/engine/Cargo.toml +++ b/crates/engine/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_engine" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true license.workspace = true diff --git a/crates/env/Cargo.toml b/crates/env/Cargo.toml index 065d8cb233..842b0be810 100644 --- a/crates/env/Cargo.toml +++ b/crates/env/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_env" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true rust-version = "1.68" diff --git a/crates/env/src/api.rs b/crates/env/src/api.rs index 47ee8c696c..654ea7987d 100644 --- a/crates/env/src/api.rs +++ b/crates/env/src/api.rs @@ -844,7 +844,7 @@ where /// enum. /// /// For more details consult -/// [host function documentation](https://use-ink.github.io/substrate/master/pallet_contracts/api_doc/trait.Current.html#tymethod.call_runtime). +/// [host function documentation](https://paritytech.github.io/substrate/master/pallet_contracts/api_doc/trait.Current.html#tymethod.call_runtime). /// /// # Errors /// diff --git a/crates/ink/Cargo.toml b/crates/ink/Cargo.toml index 8bf8c1e919..722eb83edc 100644 --- a/crates/ink/Cargo.toml +++ b/crates/ink/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true rust-version = "1.63" diff --git a/crates/ink/codegen/Cargo.toml b/crates/ink/codegen/Cargo.toml index 21f87f3d4c..f8d72e0c33 100644 --- a/crates/ink/codegen/Cargo.toml +++ b/crates/ink/codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_codegen" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true license.workspace = true diff --git a/crates/ink/ir/Cargo.toml b/crates/ink/ir/Cargo.toml index f19cb21bbd..ef9bf8a22c 100644 --- a/crates/ink/ir/Cargo.toml +++ b/crates/ink/ir/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_ir" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true license.workspace = true diff --git a/crates/ink/macro/Cargo.toml b/crates/ink/macro/Cargo.toml index fec3e2e6f3..b58c584306 100644 --- a/crates/ink/macro/Cargo.toml +++ b/crates/ink/macro/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_macro" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true license.workspace = true diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 4efbf1210d..5c07162312 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_metadata" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true license.workspace = true diff --git a/crates/prelude/Cargo.toml b/crates/prelude/Cargo.toml index 7e83ca274f..e5cc9561e6 100644 --- a/crates/prelude/Cargo.toml +++ b/crates/prelude/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_prelude" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true license.workspace = true diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 874c49af0d..a16291d292 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_primitives" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true license.workspace = true diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index da69236c79..23345bdce5 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ink_storage" version.workspace = true -authors = ["Use Ink "] +authors = ["Use Ink "] edition.workspace = true license.workspace = true diff --git a/integration-tests/internal/call-builder-return-value/Cargo.toml b/integration-tests/internal/call-builder-return-value/Cargo.toml index a77cd8504f..e41e32f327 100755 --- a/integration-tests/internal/call-builder-return-value/Cargo.toml +++ b/integration-tests/internal/call-builder-return-value/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "call_builder_return_value" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/internal/e2e-runtime-only-backend/Cargo.toml b/integration-tests/internal/e2e-runtime-only-backend/Cargo.toml index 733ede1080..597feb1848 100644 --- a/integration-tests/internal/e2e-runtime-only-backend/Cargo.toml +++ b/integration-tests/internal/e2e-runtime-only-backend/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "e2e-runtime-only-backend" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/internal/lang-err/call-builder-delegate/Cargo.toml b/integration-tests/internal/lang-err/call-builder-delegate/Cargo.toml index 6e68a19a29..a07ab46948 100755 --- a/integration-tests/internal/lang-err/call-builder-delegate/Cargo.toml +++ b/integration-tests/internal/lang-err/call-builder-delegate/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "call_builder_delegate" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/internal/lang-err/call-builder/Cargo.toml b/integration-tests/internal/lang-err/call-builder/Cargo.toml index 37d3af9091..6e6b8558c0 100755 --- a/integration-tests/internal/lang-err/call-builder/Cargo.toml +++ b/integration-tests/internal/lang-err/call-builder/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "call_builder" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/internal/lang-err/constructors-return-value/Cargo.toml b/integration-tests/internal/lang-err/constructors-return-value/Cargo.toml index 40135798e6..2063f67539 100644 --- a/integration-tests/internal/lang-err/constructors-return-value/Cargo.toml +++ b/integration-tests/internal/lang-err/constructors-return-value/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "constructors_return_value" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/internal/lang-err/contract-ref/Cargo.toml b/integration-tests/internal/lang-err/contract-ref/Cargo.toml index 8c2476325d..22c4a65ff3 100755 --- a/integration-tests/internal/lang-err/contract-ref/Cargo.toml +++ b/integration-tests/internal/lang-err/contract-ref/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "contract_ref" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" [dependencies] diff --git a/integration-tests/internal/lang-err/integration-flipper/Cargo.toml b/integration-tests/internal/lang-err/integration-flipper/Cargo.toml index 2112ce592c..400fe102f1 100644 --- a/integration-tests/internal/lang-err/integration-flipper/Cargo.toml +++ b/integration-tests/internal/lang-err/integration-flipper/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "integration_flipper" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/internal/mother/Cargo.toml b/integration-tests/internal/mother/Cargo.toml index bd75ca348f..688531c6c6 100755 --- a/integration-tests/internal/mother/Cargo.toml +++ b/integration-tests/internal/mother/Cargo.toml @@ -2,7 +2,7 @@ name = "mother" description = "Mother of all contracts" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/internal/sr25519-verification/Cargo.toml b/integration-tests/internal/sr25519-verification/Cargo.toml index ea2b181d14..0e289b7387 100644 --- a/integration-tests/internal/sr25519-verification/Cargo.toml +++ b/integration-tests/internal/sr25519-verification/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "sr25519_verification" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/call-runtime/Cargo.toml b/integration-tests/public/call-runtime/Cargo.toml index bd5566ee8c..3f882aa898 100644 --- a/integration-tests/public/call-runtime/Cargo.toml +++ b/integration-tests/public/call-runtime/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "call-runtime" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/combined-extension/Cargo.toml b/integration-tests/public/combined-extension/Cargo.toml index 41765d7868..4ae9104838 100755 --- a/integration-tests/public/combined-extension/Cargo.toml +++ b/integration-tests/public/combined-extension/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "combined_extension" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/conditional-compilation/Cargo.toml b/integration-tests/public/conditional-compilation/Cargo.toml index d4996d7e54..bf65120029 100755 --- a/integration-tests/public/conditional-compilation/Cargo.toml +++ b/integration-tests/public/conditional-compilation/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "conditional-compilation" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" [dependencies] diff --git a/integration-tests/public/contract-storage/Cargo.toml b/integration-tests/public/contract-storage/Cargo.toml index 20f77ab1b7..994fb71cf2 100755 --- a/integration-tests/public/contract-storage/Cargo.toml +++ b/integration-tests/public/contract-storage/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "contract-storage" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/contract-terminate/Cargo.toml b/integration-tests/public/contract-terminate/Cargo.toml index c71f195740..fce0594614 100644 --- a/integration-tests/public/contract-terminate/Cargo.toml +++ b/integration-tests/public/contract-terminate/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "contract_terminate" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/contract-transfer/Cargo.toml b/integration-tests/public/contract-transfer/Cargo.toml index 1e4bdaac25..4fa3791662 100644 --- a/integration-tests/public/contract-transfer/Cargo.toml +++ b/integration-tests/public/contract-transfer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "contract_transfer" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/contract-xcm/Cargo.toml b/integration-tests/public/contract-xcm/Cargo.toml index 5e865bb84c..eef9c75bf6 100644 --- a/integration-tests/public/contract-xcm/Cargo.toml +++ b/integration-tests/public/contract-xcm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "contract-xcm" version = "4.0.0" -authors = ["Parity Technologies "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/cross-contract-calls/Cargo.toml b/integration-tests/public/cross-contract-calls/Cargo.toml index 9488bcce5b..5f7f057b95 100755 --- a/integration-tests/public/cross-contract-calls/Cargo.toml +++ b/integration-tests/public/cross-contract-calls/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cross-contract-calls" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/cross-contract-calls/other-contract/Cargo.toml b/integration-tests/public/cross-contract-calls/other-contract/Cargo.toml index 2b391ad7f4..c9086d7240 100755 --- a/integration-tests/public/cross-contract-calls/other-contract/Cargo.toml +++ b/integration-tests/public/cross-contract-calls/other-contract/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "other-contract" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/custom-allocator/Cargo.toml b/integration-tests/public/custom-allocator/Cargo.toml index d2c6899ea0..19011587f3 100755 --- a/integration-tests/public/custom-allocator/Cargo.toml +++ b/integration-tests/public/custom-allocator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "custom-allocator" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/custom-environment/Cargo.toml b/integration-tests/public/custom-environment/Cargo.toml index 001f54771f..a68c4805dd 100644 --- a/integration-tests/public/custom-environment/Cargo.toml +++ b/integration-tests/public/custom-environment/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "custom-environment" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/dns/Cargo.toml b/integration-tests/public/dns/Cargo.toml index 891215a063..7667568b9d 100644 --- a/integration-tests/public/dns/Cargo.toml +++ b/integration-tests/public/dns/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dns" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/e2e-call-runtime/Cargo.toml b/integration-tests/public/e2e-call-runtime/Cargo.toml index 521f108b7b..1b21093660 100644 --- a/integration-tests/public/e2e-call-runtime/Cargo.toml +++ b/integration-tests/public/e2e-call-runtime/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "e2e_call_runtime" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/erc1155/Cargo.toml b/integration-tests/public/erc1155/Cargo.toml index 95ce767eef..a9055e0587 100644 --- a/integration-tests/public/erc1155/Cargo.toml +++ b/integration-tests/public/erc1155/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "erc1155" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/erc20/Cargo.toml b/integration-tests/public/erc20/Cargo.toml index 985e49ef8c..f8420f609b 100644 --- a/integration-tests/public/erc20/Cargo.toml +++ b/integration-tests/public/erc20/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "erc20" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/erc721/Cargo.toml b/integration-tests/public/erc721/Cargo.toml index 7e9b522085..6be60a74cf 100644 --- a/integration-tests/public/erc721/Cargo.toml +++ b/integration-tests/public/erc721/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "erc721" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/events/Cargo.toml b/integration-tests/public/events/Cargo.toml index 00d465e5b8..0e1b706f3c 100644 --- a/integration-tests/public/events/Cargo.toml +++ b/integration-tests/public/events/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "events" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/flipper/Cargo.toml b/integration-tests/public/flipper/Cargo.toml index bd9d854d94..c3df5bce25 100644 --- a/integration-tests/public/flipper/Cargo.toml +++ b/integration-tests/public/flipper/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "flipper" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/incrementer/Cargo.toml b/integration-tests/public/incrementer/Cargo.toml index 18a445e9e6..4309d83e08 100644 --- a/integration-tests/public/incrementer/Cargo.toml +++ b/integration-tests/public/incrementer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "incrementer" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/lazyvec/Cargo.toml b/integration-tests/public/lazyvec/Cargo.toml index 1867d45c67..16ac1f130d 100755 --- a/integration-tests/public/lazyvec/Cargo.toml +++ b/integration-tests/public/lazyvec/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "lazyvec" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/mapping/Cargo.toml b/integration-tests/public/mapping/Cargo.toml index a76b5b4e23..3e41a5d8e8 100755 --- a/integration-tests/public/mapping/Cargo.toml +++ b/integration-tests/public/mapping/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mapping" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/multi-contract-caller/Cargo.toml b/integration-tests/public/multi-contract-caller/Cargo.toml index ee61a7a4d7..56fcf982dc 100644 --- a/integration-tests/public/multi-contract-caller/Cargo.toml +++ b/integration-tests/public/multi-contract-caller/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "multi-contract-caller" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/multi-contract-caller/accumulator/Cargo.toml b/integration-tests/public/multi-contract-caller/accumulator/Cargo.toml index 176949820b..878f4fa0f0 100644 --- a/integration-tests/public/multi-contract-caller/accumulator/Cargo.toml +++ b/integration-tests/public/multi-contract-caller/accumulator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "accumulator" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" [dependencies] diff --git a/integration-tests/public/multi-contract-caller/adder/Cargo.toml b/integration-tests/public/multi-contract-caller/adder/Cargo.toml index 3dc5f512d2..ea47e40b88 100644 --- a/integration-tests/public/multi-contract-caller/adder/Cargo.toml +++ b/integration-tests/public/multi-contract-caller/adder/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "adder" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" [dependencies] diff --git a/integration-tests/public/multi-contract-caller/subber/Cargo.toml b/integration-tests/public/multi-contract-caller/subber/Cargo.toml index 792b7035f7..2c53c15803 100644 --- a/integration-tests/public/multi-contract-caller/subber/Cargo.toml +++ b/integration-tests/public/multi-contract-caller/subber/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "subber" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" [dependencies] diff --git a/integration-tests/public/multisig/Cargo.toml b/integration-tests/public/multisig/Cargo.toml index 9d9c7eedfc..0f5ed42cea 100755 --- a/integration-tests/public/multisig/Cargo.toml +++ b/integration-tests/public/multisig/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "multisig" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/payment-channel/Cargo.toml b/integration-tests/public/payment-channel/Cargo.toml index 2b402e0ae4..7f64f809ae 100755 --- a/integration-tests/public/payment-channel/Cargo.toml +++ b/integration-tests/public/payment-channel/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "payment_channel" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/psp22-extension/Cargo.toml b/integration-tests/public/psp22-extension/Cargo.toml index f06daa8877..75c824187c 100755 --- a/integration-tests/public/psp22-extension/Cargo.toml +++ b/integration-tests/public/psp22-extension/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "psp22_extension" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/rand-extension/Cargo.toml b/integration-tests/public/rand-extension/Cargo.toml index 98ead91b06..38bb146c21 100755 --- a/integration-tests/public/rand-extension/Cargo.toml +++ b/integration-tests/public/rand-extension/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rand_extension" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/runtime-call-contract/Cargo.toml b/integration-tests/public/runtime-call-contract/Cargo.toml index 1b01cda8d2..0a89e13d39 100644 --- a/integration-tests/public/runtime-call-contract/Cargo.toml +++ b/integration-tests/public/runtime-call-contract/Cargo.toml @@ -2,10 +2,10 @@ members = ["sandbox-runtime", "traits"] [workspace.package] -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" -homepage = "https://www.parity.io/" -keywords = ["wasm", "parity", "webassembly", "blockchain", "edsl"] +homepage = "https://use.ink" +keywords = ["wasm", "ink", "webassembly", "blockchain", "edsl"] license = "Apache-2.0" repository = "https://github.com/use-ink/ink" @@ -20,7 +20,7 @@ scale-info = { version = "2.11.1", default-features = false } [package] name = "runtime-call-contract" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/runtime-call-contract/sandbox-runtime/pallet-contract-caller/Cargo.toml b/integration-tests/public/runtime-call-contract/sandbox-runtime/pallet-contract-caller/Cargo.toml index 226dfddf2a..9726520d1e 100644 --- a/integration-tests/public/runtime-call-contract/sandbox-runtime/pallet-contract-caller/Cargo.toml +++ b/integration-tests/public/runtime-call-contract/sandbox-runtime/pallet-contract-caller/Cargo.toml @@ -2,7 +2,7 @@ name = "pallet-contract-caller" version = "0.1.0" description = "Demonstrate calling an ink! contract from a pallet" -authors = ["Use Ink "] +authors = ["Use Ink "] homepage = "https://substrate.io" edition.workspace = true license = "MIT-0" diff --git a/integration-tests/public/runtime-call-contract/traits/Cargo.toml b/integration-tests/public/runtime-call-contract/traits/Cargo.toml index a0002c2e3a..149c121ee5 100644 --- a/integration-tests/public/runtime-call-contract/traits/Cargo.toml +++ b/integration-tests/public/runtime-call-contract/traits/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "flipper-traits" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/static-buffer/Cargo.toml b/integration-tests/public/static-buffer/Cargo.toml index 2ed11bff43..59649b9133 100644 --- a/integration-tests/public/static-buffer/Cargo.toml +++ b/integration-tests/public/static-buffer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "static-buffer" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/trait-dyn-cross-contract-calls/Cargo.toml b/integration-tests/public/trait-dyn-cross-contract-calls/Cargo.toml index f1233e4faf..9c953f5133 100644 --- a/integration-tests/public/trait-dyn-cross-contract-calls/Cargo.toml +++ b/integration-tests/public/trait-dyn-cross-contract-calls/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "trait-incrementer-caller" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/trait-dyn-cross-contract-calls/contracts/incrementer/Cargo.toml b/integration-tests/public/trait-dyn-cross-contract-calls/contracts/incrementer/Cargo.toml index ea74f139da..1a99632dd4 100644 --- a/integration-tests/public/trait-dyn-cross-contract-calls/contracts/incrementer/Cargo.toml +++ b/integration-tests/public/trait-dyn-cross-contract-calls/contracts/incrementer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "trait-incrementer" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/trait-dyn-cross-contract-calls/traits/Cargo.toml b/integration-tests/public/trait-dyn-cross-contract-calls/traits/Cargo.toml index b1faff99bb..58df26db12 100644 --- a/integration-tests/public/trait-dyn-cross-contract-calls/traits/Cargo.toml +++ b/integration-tests/public/trait-dyn-cross-contract-calls/traits/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "dyn-traits" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/trait-erc20/Cargo.toml b/integration-tests/public/trait-erc20/Cargo.toml index c9e2a2fced..1b3f8f40fb 100644 --- a/integration-tests/public/trait-erc20/Cargo.toml +++ b/integration-tests/public/trait-erc20/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "trait_erc20" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/trait-flipper/Cargo.toml b/integration-tests/public/trait-flipper/Cargo.toml index 56b61c3517..fbb5e18851 100644 --- a/integration-tests/public/trait-flipper/Cargo.toml +++ b/integration-tests/public/trait-flipper/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "trait_flipper" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/trait-incrementer/Cargo.toml b/integration-tests/public/trait-incrementer/Cargo.toml index 2d71c55920..2537c8a41f 100644 --- a/integration-tests/public/trait-incrementer/Cargo.toml +++ b/integration-tests/public/trait-incrementer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "trait-incrementer" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/trait-incrementer/traits/Cargo.toml b/integration-tests/public/trait-incrementer/traits/Cargo.toml index eff1c934b2..a98483bf7c 100644 --- a/integration-tests/public/trait-incrementer/traits/Cargo.toml +++ b/integration-tests/public/trait-incrementer/traits/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "traits" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/upgradeable-contracts/delegator/Cargo.toml b/integration-tests/public/upgradeable-contracts/delegator/Cargo.toml index 2b4d06f4d5..8a67e693f5 100644 --- a/integration-tests/public/upgradeable-contracts/delegator/Cargo.toml +++ b/integration-tests/public/upgradeable-contracts/delegator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "delegator" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/upgradeable-contracts/delegator/delegatee/Cargo.toml b/integration-tests/public/upgradeable-contracts/delegator/delegatee/Cargo.toml index 2a84b03bf6..a95575b19b 100644 --- a/integration-tests/public/upgradeable-contracts/delegator/delegatee/Cargo.toml +++ b/integration-tests/public/upgradeable-contracts/delegator/delegatee/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "delegatee" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/upgradeable-contracts/delegator/delegatee2/Cargo.toml b/integration-tests/public/upgradeable-contracts/delegator/delegatee2/Cargo.toml index 6da4843d78..b7c35f7cd6 100644 --- a/integration-tests/public/upgradeable-contracts/delegator/delegatee2/Cargo.toml +++ b/integration-tests/public/upgradeable-contracts/delegator/delegatee2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "delegatee2" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/upgradeable-contracts/set-code-hash-migration/Cargo.toml b/integration-tests/public/upgradeable-contracts/set-code-hash-migration/Cargo.toml index acf9a8d4c2..b332203e3f 100644 --- a/integration-tests/public/upgradeable-contracts/set-code-hash-migration/Cargo.toml +++ b/integration-tests/public/upgradeable-contracts/set-code-hash-migration/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "incrementer" version = "5.0.0-alpha" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/upgradeable-contracts/set-code-hash-migration/migration/Cargo.toml b/integration-tests/public/upgradeable-contracts/set-code-hash-migration/migration/Cargo.toml index 1f7da5016c..366b6fe12d 100644 --- a/integration-tests/public/upgradeable-contracts/set-code-hash-migration/migration/Cargo.toml +++ b/integration-tests/public/upgradeable-contracts/set-code-hash-migration/migration/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "migration" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/upgradeable-contracts/set-code-hash-migration/updated-incrementer/Cargo.toml b/integration-tests/public/upgradeable-contracts/set-code-hash-migration/updated-incrementer/Cargo.toml index 478f7f7067..4b55412c12 100644 --- a/integration-tests/public/upgradeable-contracts/set-code-hash-migration/updated-incrementer/Cargo.toml +++ b/integration-tests/public/upgradeable-contracts/set-code-hash-migration/updated-incrementer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "updated-incrementer" version = "5.0.0-alpha" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/upgradeable-contracts/set-code-hash/Cargo.toml b/integration-tests/public/upgradeable-contracts/set-code-hash/Cargo.toml index 9e1acacd1a..6087821da8 100644 --- a/integration-tests/public/upgradeable-contracts/set-code-hash/Cargo.toml +++ b/integration-tests/public/upgradeable-contracts/set-code-hash/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "incrementer" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/upgradeable-contracts/set-code-hash/updated-incrementer/Cargo.toml b/integration-tests/public/upgradeable-contracts/set-code-hash/updated-incrementer/Cargo.toml index 03cf1f2aae..03ccbac320 100644 --- a/integration-tests/public/upgradeable-contracts/set-code-hash/updated-incrementer/Cargo.toml +++ b/integration-tests/public/upgradeable-contracts/set-code-hash/updated-incrementer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "updated-incrementer" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/integration-tests/public/wildcard-selector/Cargo.toml b/integration-tests/public/wildcard-selector/Cargo.toml index b5233a0ef2..f2de1fc025 100644 --- a/integration-tests/public/wildcard-selector/Cargo.toml +++ b/integration-tests/public/wildcard-selector/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wildcard-selector" version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" publish = false diff --git a/linting/Cargo.toml b/linting/Cargo.toml index d590643721..c1bcc42f2d 100644 --- a/linting/Cargo.toml +++ b/linting/Cargo.toml @@ -8,12 +8,12 @@ members = [ [workspace.package] version = "5.0.0" -authors = ["Use Ink "] +authors = ["Use Ink "] edition = "2021" license = "Apache-2.0" repository = "https://github.com/use-ink/ink" -homepage = "https://www.parity.io/" -keywords = ["parity", "blockchain", "edsl", "dylint", "linting"] +homepage = "https://use.ink" +keywords = ["ink", "blockchain", "edsl", "dylint", "linting"] [workspace.dependencies] ink_linting_utils = { version = "=5.0.0", path = "utils" }