diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8025286c5..1ecdbd897 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,6 @@ jobs: token: ${{ secrets.GH_TOKEN }} submodules: recursive - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: ${{ secrets.SSH_KEY }} - - name: Install toolchain uses: dtolnay/rust-toolchain@nightly with: diff --git a/Cargo.lock b/Cargo.lock index b58a99c9f..0f94d1516 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3029,7 +3029,7 @@ dependencies = [ [[package]] name = "ismp" version = "0.1.0" -source = "git+ssh://git@github.com/polytope-labs/ismp-rs.git?branch=main#1932c2c45f7c6ff104dd27b87aa06769739697fb" +source = "git+https://github.com/polytope-labs/ismp-rs?branch=main#1932c2c45f7c6ff104dd27b87aa06769739697fb" dependencies = [ "derive_more", "parity-scale-codec", @@ -3151,7 +3151,7 @@ dependencies = [ [[package]] name = "ismp-testsuite" version = "0.1.0" -source = "git+ssh://git@github.com/polytope-labs/ismp-rs.git?branch=main#1932c2c45f7c6ff104dd27b87aa06769739697fb" +source = "git+https://github.com/polytope-labs/ismp-rs?branch=main#1932c2c45f7c6ff104dd27b87aa06769739697fb" dependencies = [ "ismp", "parity-scale-codec", diff --git a/ismp-assets/Cargo.toml b/ismp-assets/Cargo.toml index ea658cd5b..ad8a71ab3 100644 --- a/ismp-assets/Cargo.toml +++ b/ismp-assets/Cargo.toml @@ -13,7 +13,7 @@ codec = { package = "parity-scale-codec", version = "3.2.2", default-features = scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } # polytope labs -ismp = { git = "ssh://git@github.com/polytope-labs/ismp-rs.git", branch = "main", default-features = false } +ismp = { git = "https://github.com/polytope-labs/ismp-rs", branch = "main", default-features = false } # substrate frame-support = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" } diff --git a/pallet-ismp/Cargo.toml b/pallet-ismp/Cargo.toml index 8e4a5db39..5a9a6c9e2 100644 --- a/pallet-ismp/Cargo.toml +++ b/pallet-ismp/Cargo.toml @@ -17,7 +17,7 @@ sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false, optional = true } # polytope labs -ismp-rs = { package = "ismp", git = "ssh://git@github.com/polytope-labs/ismp-rs.git", branch = "main", default-features = false } +ismp-rs = { package = "ismp", git = "https://github.com/polytope-labs/ismp-rs", branch = "main", default-features = false } # crates.io codec = { package = "parity-scale-codec", version = "3.1.3", default-features = false } @@ -34,7 +34,7 @@ ismp-primitives = { path = "./primitives", default-features = false } [dev-dependencies] env_logger = "0.10.0" pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" } -ismp-testsuite = { git = "ssh://git@github.com/polytope-labs/ismp-rs.git", branch = "main" } +ismp-testsuite = { git = "https://github.com/polytope-labs/ismp-rs", branch = "main" } [features] default = ["std"] diff --git a/pallet-ismp/primitives/Cargo.toml b/pallet-ismp/primitives/Cargo.toml index 7580f618c..3fc71c5ce 100644 --- a/pallet-ismp/primitives/Cargo.toml +++ b/pallet-ismp/primitives/Cargo.toml @@ -10,7 +10,7 @@ frame-system = { git = "https://github.com/paritytech/substrate", branch = "polk sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false } # polytope labs -ismp = { git = "ssh://git@github.com/polytope-labs/ismp-rs.git", branch = "main", default-features = false } +ismp = { git = "https://github.com/polytope-labs/ismp-rs", branch = "main", default-features = false } # crates.io merkle-mountain-range = { package = "ckb-merkle-mountain-range", version = "0.5.2", default-features = false } diff --git a/pallet-ismp/rpc/Cargo.toml b/pallet-ismp/rpc/Cargo.toml index f076d396e..14af027b9 100644 --- a/pallet-ismp/rpc/Cargo.toml +++ b/pallet-ismp/rpc/Cargo.toml @@ -14,7 +14,7 @@ hex-literal = { version = "0.3.3" } jsonrpsee = { version = "0.16.2", features = ["client-core", "server", "macros"] } serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.45" -ismp-rs = { package = "ismp", git = "ssh://git@github.com/polytope-labs/ismp-rs.git", branch = "main" } +ismp-rs = { package = "ismp", git = "https://github.com/polytope-labs/ismp-rs", branch = "main" } pallet-ismp = { path = ".." } ismp-runtime-api = { path = "../runtime-api" } ismp-primitives = { path = "../primitives" } diff --git a/pallet-ismp/runtime-api/Cargo.toml b/pallet-ismp/runtime-api/Cargo.toml index a90af8575..77161cf21 100644 --- a/pallet-ismp/runtime-api/Cargo.toml +++ b/pallet-ismp/runtime-api/Cargo.toml @@ -12,7 +12,7 @@ sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42", default-features = false } pallet-ismp = { path = "..", default-features = false } ismp-primitives = { path = "../primitives", default-features = false } -ismp-rs = { package = "ismp", git = "ssh://git@github.com/polytope-labs/ismp-rs.git", branch = "main", default-features = false } +ismp-rs = { package = "ismp", git = "https://github.com/polytope-labs/ismp-rs", branch = "main", default-features = false } serde = { version = "1.0.136", features = ["derive"], optional = true } [dependencies.codec] diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 75822aa32..1eca48147 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -17,7 +17,7 @@ primitive-types = { version = "0.12.1", default-features = false } hash-db = { version = "0.16.0", default-features = false } # polytope labs -ismp = { git = "ssh://git@github.com/polytope-labs/ismp-rs.git", branch = "main", default-features = false } +ismp = { git = "https://github.com/polytope-labs/ismp-rs", branch = "main", default-features = false } # substrate frame-support = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" } diff --git a/parachain/inherent/Cargo.toml b/parachain/inherent/Cargo.toml index 63b11191b..06cffb4ec 100644 --- a/parachain/inherent/Cargo.toml +++ b/parachain/inherent/Cargo.toml @@ -20,6 +20,6 @@ cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", bran cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus", branch = "release-v0.9.420" } # polytope-labs -ismp = { git = "ssh://git@github.com/polytope-labs/ismp-rs.git", branch = "main" } +ismp = { git = "https://github.com/polytope-labs/ismp-rs", branch = "main" } ismp-parachain = { path = "../" } ismp-parachain-runtime-api = { path = "../runtime-api" } \ No newline at end of file