Skip to content

Commit

Permalink
Replace ssh addresses with http addresses (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wizdave97 authored May 30, 2023
1 parent 443a461 commit 21b3dc1
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 14 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ jobs:
token: ${{ secrets.GH_TOKEN }}
submodules: recursive

- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_KEY }}

- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
with:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ismp-assets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
4 changes: 2 additions & 2 deletions pallet-ismp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion pallet-ismp/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion pallet-ismp/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion pallet-ismp/runtime-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion parachain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion parachain/inherent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

0 comments on commit 21b3dc1

Please sign in to comment.