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 9d05bcc7b63..3003444997e 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 811e83e9fa9..10e98b566ae 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 d747a3c3e12..de2485ba935 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 02ff666ae06..398f8c3fe50 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 7a6cbe7ecc9..e77ee0d7e9d 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 bfdb5a64ab6..3f7baad5fa9 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 cb67b704f57..11492dd92d3 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 29a2fb7e1c9..77971c336f2 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 065d8cb2334..842b0be8102 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 47ee8c696cb..654ea7987da 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 8bf8c1e9190..722eb83edcf 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 21f87f3d4c5..f8d72e0c333 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 f19cb21bbdf..ef9bf8a22c0 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 fec3e2e6f3a..b58c5843060 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 4efbf1210de..5c07162312f 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 7e83ca274f9..e5cc9561e6e 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 874c49af0db..a16291d2924 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 da69236c794..23345bdce52 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 a77cd8504f1..e41e32f3276 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 733ede10808..597feb18485 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 6e68a19a292..a07ab469486 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 37d3af90912..6e6b8558c0f 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 40135798e6b..2063f675397 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 8c2476325d9..22c4a65ff3d 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 2112ce592c2..400fe102f1f 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 bd75ca348f7..688531c6c67 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 ea2b181d14d..0e289b73871 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 bd5566ee8cb..3f882aa898a 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 41765d7868f..4ae9104838e 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 d4996d7e547..bf651200297 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 20f77ab1b7f..994fb71cf2f 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 c71f195740f..fce0594614a 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 1e4bdaac252..4fa3791662e 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 5e865bb84ca..eef9c75bf62 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 9488bcce5bd..5f7f057b957 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 2b391ad7f4c..c9086d72403 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 d2c6899ea0c..19011587f3d 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 001f54771f3..a68c4805ddc 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 891215a0638..7667568b9db 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 521f108b7b1..1b21093660b 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 95ce767eef3..a9055e05875 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 985e49ef8c9..f8420f609bb 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 7e9b522085f..6be60a74cf3 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 00d465e5b82..0e1b706f3cc 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 bd9d854d94d..c3df5bce250 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 18a445e9e69..4309d83e089 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 1867d45c673..16ac1f130dd 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 a76b5b4e230..3e41a5d8e82 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 ee61a7a4d7b..56fcf982dcf 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 176949820b3..878f4fa0f01 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 3dc5f512d2e..ea47e40b88d 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 792b7035f7b..2c53c158038 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 9d9c7eedfc7..0f5ed42ceac 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 2b402e0ae4f..7f64f809aed 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 f06daa8877c..75c824187cd 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 98ead91b06d..38bb146c216 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 1b01cda8d2f..0a89e13d39c 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 226dfddf2ab..9726520d1e2 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 a0002c2e3a0..149c121ee58 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 2ed11bff43b..59649b91339 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 f1233e4faf8..9c953f5133a 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 ea74f139daf..1a99632dd46 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 b1faff99bba..58df26db126 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 c9e2a2fced5..1b3f8f40fb2 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 56b61c35171..fbb5e188510 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 2d71c559201..2537c8a41f0 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 eff1c934b2c..a98483bf7c4 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 2b4d06f4d5d..8a67e693f57 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 2a84b03bf6b..a95575b19b7 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 6da4843d78a..b7c35f7cd67 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 acf9a8d4c2e..b332203e3f6 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 1f7da5016c3..366b6fe12da 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 478f7f70674..4b55412c121 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 9e1acacd1ae..6087821da86 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 03cf1f2aaee..03ccbac320e 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 b5233a0ef26..f2de1fc0253 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 d590643721a..c1bcc42f2d8 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" }