diff --git a/.config/lychee.toml b/.config/lychee.toml index f6963233..169999a8 100644 --- a/.config/lychee.toml +++ b/.config/lychee.toml @@ -76,8 +76,8 @@ exclude = [ # Sıfır Etki - Kapanmış/Rate-Limited Siteler # ============================================ # Deprecated/shutdown sites - "https://substrate.io/", "https://invarch.network/", + "https://substrate.io/", # Rate limited (403) "https://aventus.io/", "https://efinity.io/", @@ -86,8 +86,8 @@ exclude = [ "https://parachain.capitaldex.exchange/", "https://stackoverflow.com/.*", # Server errors (5xx) - "https://impactprotocol.network/", "http://laminar.network/", + "https://impactprotocol.network/", "https://neatcoin.org/", # Network/DNS errors (defunct chains) "https://allfeat.network/", @@ -112,11 +112,11 @@ exclude = [ # ============================================ # GitHub commit-specific URLs (cannot migrate) # ============================================ + "https://github.com/paritytech/polkadot-sdk/blob/.*/bizinikiwi/.*", + "https://github.com/pezkuwichain/pezkuwi-sdk/blob/[a-f0-9]+/.*", "https://github.com/pezkuwichain/pezkuwi-sdk/issues/.*/commits/.*", "https://github.com/pezkuwichain/pezkuwi-sdk/issues/.*/files.*", - "https://github.com/pezkuwichain/pezkuwi-sdk/blob/[a-f0-9]+/.*", "https://github.com/pezkuwichain/pezkuwi-sdk/tree/[a-f0-9]+/.*", - "https://github.com/paritytech/polkadot-sdk/blob/.*/bizinikiwi/.*", # Migrated bizinikiwi references "https://github.com/pezkuwichain/bizinikiwi.*", ] diff --git a/.github/workflows/checks-quick.yml b/.github/workflows/checks-quick.yml index d3214bab..aa0bfdae 100644 --- a/.github/workflows/checks-quick.yml +++ b/.github/workflows/checks-quick.yml @@ -121,8 +121,8 @@ jobs: CONFIG: .github/.markdownlint.yaml run: | echo "Checking markdown formatting. More info: docs/contributor/markdown_linting.md" - echo "To fix potential erros, you can run 'markdownlint --config .github/.markdownlint.yaml -f --ignore target .' locally." - markdownlint --config "$CONFIG" --ignore target . + echo "To fix potential errors, you can run 'markdownlint --config .github/.markdownlint.yaml -f --ignore target --ignore vendor .' locally." + markdownlint --config "$CONFIG" --ignore target --ignore vendor . check-umbrella: runs-on: ubuntu-latest timeout-minutes: 20 diff --git a/umbrella/Cargo.toml b/umbrella/Cargo.toml index 2345920e..27b2fe1f 100644 --- a/umbrella/Cargo.toml +++ b/umbrella/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "pezkuwi-sdk" -version = "0.1.0" description = "Pezkuwi SDK umbrella crate." license = "Apache-2.0" diff --git a/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml b/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml index fde004be..bd0c0902 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml +++ b/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml @@ -15,6 +15,7 @@ keywords = ["orchestrator", "sdk", "zombienet"] [dependencies] anyhow = { workspace = true } async-trait = { workspace = true } +erased-serde = { workspace = true } fancy-regex = { workspace = true } futures = { workspace = true } glob-match = { workspace = true } @@ -24,19 +25,18 @@ libsecp256k1 = { workspace = true } multiaddr = { workspace = true } pezkuwi-subxt = { workspace = true } pezkuwi-subxt-signer = { workspace = true } +pezsc-chain-spec = { workspace = true } +pezsp-core = { workspace = true } rand = { workspace = true } regex = { workspace = true } reqwest = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true, features = ["arbitrary_precision"] } sha2 = { workspace = true, default-features = false } -pezsp-core = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true, features = ["time"] } tracing = { workspace = true } uuid = { workspace = true } -erased-serde = { workspace = true } -pezsc-chain-spec = { workspace = true } # Zombienet deps configuration = { workspace = true }