Files
pezkuwi-sdk/bizinikiwi/primitives/api/test/tests/ui/deprecation_info.stderr
T
pezkuwichain 1c0e57d984 feat: Rebrand Polkadot/Substrate references to PezkuwiChain
This commit systematically rebrands various references from Parity Technologies'
Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk.

Key changes include:
- Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks.
- Modified internal documentation and code comments to reflect PezkuwiChain naming and structure.
- Replaced direct references to  with  or specific paths within the  for XCM, Pezkuwi, and other modules.
- Cleaned up deprecated  issue and PR references in various  and  files, particularly in  and  modules.
- Adjusted image and logo URLs in documentation to point to PezkuwiChain assets.
- Removed or rephrased comments related to external Polkadot/Substrate PRs and issues.

This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
2025-12-14 00:04:10 +03:00

44 lines
1.2 KiB
Plaintext

error: Invalid deprecation attribute: missing `note`
help: the following are the possible correct uses
|
| #[deprecated = "reason"]
|
| #[deprecated(/*opt*/ since = "version", /*opt*/ note = "reason")]
|
| #[deprecated]
|
--> tests/ui/deprecation_info.rs:20:3
|
20 | #[deprecated(unknown_kw = "test")]
| ^
error: malformed `deprecated` attribute input
--> tests/ui/deprecation_info.rs:24:3
|
24 | #[deprecated = 5]
| ^^^^^^^^^^^^^^^^^
|
help: the following are the possible correct uses
|
24 - #[deprecated = 5]
24 + #[deprecated = "reason"]
|
24 - #[deprecated = 5]
24 + #[deprecated(/*opt*/ since = "version", /*opt*/ note = "reason")]
|
24 - #[deprecated = 5]
24 + #[deprecated]
|
error[E0541]: unknown meta item 'unknown_kw'
--> tests/ui/deprecation_info.rs:20:16
|
20 | #[deprecated(unknown_kw = "test")]
| ^^^^^^^^^^^^^^^^^^^ expected one of `since`, `note`
error[E0565]: literal in `deprecated` value must be a string
--> tests/ui/deprecation_info.rs:22:24
|
22 | #[deprecated(since = 5)]
| ^