Skip to content
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.

Commit

Permalink
Prefer https over http for forc git dependency URLs
Browse files Browse the repository at this point in the history
This helps to resolve some dependency double-ups pending a proper
solution fix in `forc`.

See FuelLabs/sway#931 and FuelLabs/fuels-rs#150 (comment)
  • Loading branch information
mitchmindtree committed Mar 12, 2022
1 parent e331821 commit 8244a0c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ license = "Apache-2.0"
name = "lib-std"

[dependencies]
"core" = { git = "http://github.com/FuelLabs/sway-lib-core", branch = "master" }
core = { git = "https://github.com/FuelLabs/sway-lib-core", branch = "master" }
2 changes: 1 addition & 1 deletion tests/test_artifacts/balance_contract/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ license = "Apache-2.0"
name = "balance_contract"

[dependencies]
core = { git = "http://github.com/FuelLabs/sway-lib-core" }
core = { git = "https://github.com/FuelLabs/sway-lib-core", branch = "master" }
std = { path = "../../../" }
2 changes: 1 addition & 1 deletion tests/test_projects/registers/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ license = "Apache-2.0"
name = "registers"

[dependencies]
core = { git = "http://github.com/FuelLabs/sway-lib-core" }
core = { git = "https://github.com/FuelLabs/sway-lib-core", branch = "master" }
std = { path = "../../../" }
2 changes: 1 addition & 1 deletion tests/test_projects/token_ops/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ license = "Apache-2.0"
name = "token_ops"

[dependencies]
core = { git = "http://github.com/FuelLabs/sway-lib-core" }
core = { git = "https://github.com/FuelLabs/sway-lib-core", branch = "master" }
std = { path = "../../../" }

0 comments on commit 8244a0c

Please sign in to comment.