Skip to content

Commit

Permalink
Prefer https over http for forc git dependency URLs (FuelLabs#77)
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#931 and FuelLabs/fuels-rs#150 (comment)
  • Loading branch information
mitchmindtree authored Mar 12, 2022
1 parent e331821 commit fc6d81d
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 fc6d81d

Please sign in to comment.