diff --git a/book/src/packages.md b/book/src/packages.md index 4a7a312a..0ff5401a 100644 --- a/book/src/packages.md +++ b/book/src/packages.md @@ -15,6 +15,10 @@ The `fuel.nix` flake provides the following packages: | [`forc-fmt`][sway-repo] | The Sway code formatter. | | [`forc-lsp`][sway-repo] | The Sway Language Server Protocol implementation. | | [`forc-tx`][sway-repo] | Construct transactions with a CLI. | +| [`forc-call`][sway-repo] | A Forc plugin to call contracts and query the chain from the CLI. | +| [`forc-migrate`][sway-repo] | Migrate Sway projects to the next breaking version. | +| [`forc-node`][sway-repo] | Bootstrap and run a Fuel node (local, testnet, ignition). | +| [`forc-publish`][sway-repo] | Publish a package to the Forc registry. | | [`forc-wallet`][forc-wallet-repo] | A Fuel Wallet CLI implementation. | | [`sway-vim`][sway-vim-repo] | The Sway Vim plugin. | | `fuel` | All of the above tools under a single package. | diff --git a/filters.nix b/filters.nix index 671d511d..5619bc23 100644 --- a/filters.nix +++ b/filters.nix @@ -15,6 +15,10 @@ with pkgs.lib; [ (m: m.pname != "forc-lsp" || versionAtLeast m.version "0.19.0") (m: m.pname != "forc-tx" || versionAtLeast m.version "0.33.1") (m: m.pname != "forc-wallet" || versionAtLeast m.version "0.1.0") + (m: m.pname != "forc-call" || versionAtLeast m.version "0.69.1") + (m: m.pname != "forc-migrate" || versionAtLeast m.version "0.69.1") + (m: m.pname != "forc-node" || versionAtLeast m.version "0.69.1") + (m: m.pname != "forc-publish" || versionAtLeast m.version "0.69.1") (m: m.pname != "fuel-core" || versionAtLeast m.version "0.9.0") (m: m.pname != "fuel-core-client" || (versionAtLeast m.version "0.14.2" && m.date >= "2022-12-17")) (m: m.pname != "fuel-gql-cli" || (versionAtLeast m.version "0.9.0" && m.date < "2022-12-17")) diff --git a/flake.lock b/flake.lock index d2685a48..150272d3 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1752687322, - "narHash": "sha256-RKwfXA4OZROjBTQAl9WOZQFm7L8Bo93FQwSJpAiSRvo=", + "lastModified": 1758277210, + "narHash": "sha256-iCGWf/LTy+aY0zFu8q12lK8KuZp7yvdhStehhyX1v8w=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6e987485eb2c77e5dcc5af4e3c70843711ef9251", + "rev": "8eaee110344796db060382e15d3af0a9fc396e0e", "type": "github" }, "original": { @@ -31,11 +31,11 @@ ] }, "locked": { - "lastModified": 1752892850, - "narHash": "sha256-LLvDqLiK2+dr7bQqKTnZIZ8F1H67DLt3FUyVrGolGVw=", + "lastModified": 1758508617, + "narHash": "sha256-kx2uELmVnAbiekj/YFfWR26OXqXedImkhe2ocnbumTA=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "742248f12aed0183a124637e8b27a238a47f46a2", + "rev": "d2bac276ac7e669a1f09c48614538a37e3eb6d0f", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 6661af71..2d63b411 100644 --- a/flake.nix +++ b/flake.nix @@ -240,14 +240,19 @@ sway-dev = pkgs.mkShell { name = "sway-dev"; - inputsFrom = with fuelpkgs; [ - forc-nightly - forc-client-nightly - forc-doc-nightly - forc-fmt-nightly - forc-lsp-nightly - forc-tx-nightly - ]; + inputsFrom = with fuelpkgs; + [ + forc-nightly + forc-client-nightly + forc-doc-nightly + forc-fmt-nightly + forc-lsp-nightly + forc-tx-nightly + ] + ++ (pkgs.lib.optional (fuelpkgs ? forc-call-nightly) forc-call-nightly) + ++ (pkgs.lib.optional (fuelpkgs ? forc-migrate-nightly) forc-migrate-nightly) + ++ (pkgs.lib.optional (fuelpkgs ? forc-node-nightly) forc-node-nightly) + ++ (pkgs.lib.optional (fuelpkgs ? forc-publish-nightly) forc-publish-nightly); buildInputs = with fuelpkgs; [fuel-core fuel-gql-cli]; }; diff --git a/manifests/forc-0.69.2-nightly-2025-09-23.nix b/manifests/forc-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..9b6f94df --- /dev/null +++ b/manifests/forc-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-call-0.0.1.nix b/manifests/forc-call-0.0.1.nix new file mode 100644 index 00000000..e5027ab3 --- /dev/null +++ b/manifests/forc-call-0.0.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.0.1"; + date = "2021-09-27"; + url = "https://github.com/fuellabs/sway"; + rev = "c9781a1acca6eea8a1f2f30607466ae40d76de65"; + sha256 = "sha256-g6pSdahytTJQJ1rgLCku4289C2dnCLqzvSH8Mq8y26I="; +} diff --git a/manifests/forc-call-0.0.2.nix b/manifests/forc-call-0.0.2.nix new file mode 100644 index 00000000..5744bb1b --- /dev/null +++ b/manifests/forc-call-0.0.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.0.2"; + date = "2021-10-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e0c043bc9463eb266aaf111ff86b8c911602e053"; + sha256 = "sha256-LwGYEtKpb5eEts1K0TkRPwlWPu7EQLJbtaK8dAFexTk="; +} diff --git a/manifests/forc-call-0.0.3.nix b/manifests/forc-call-0.0.3.nix new file mode 100644 index 00000000..187bb556 --- /dev/null +++ b/manifests/forc-call-0.0.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.0.3"; + date = "2021-10-16"; + url = "https://github.com/fuellabs/sway"; + rev = "ce7692d119fa9010dd0937b5f10cf5728fe72393"; + sha256 = "sha256-ygyqjapnGH+tznuYu5x9vnvhfHaoQ82vlyi90s/ZTCU="; +} diff --git a/manifests/forc-call-0.0.4.nix b/manifests/forc-call-0.0.4.nix new file mode 100644 index 00000000..9a2b71ad --- /dev/null +++ b/manifests/forc-call-0.0.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.0.4"; + date = "2021-11-05"; + url = "https://github.com/fuellabs/sway"; + rev = "d40239e7d49793c7d3d23e0d3de6595e40b89e11"; + sha256 = "sha256-Udtk0i4LfiXYMWLZtRiDbjXseqiTs83BJgqHaMvJGLA="; +} diff --git a/manifests/forc-call-0.1.0.nix b/manifests/forc-call-0.1.0.nix new file mode 100644 index 00000000..3d5c895a --- /dev/null +++ b/manifests/forc-call-0.1.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.0"; + date = "2021-12-24"; + url = "https://github.com/fuellabs/sway"; + rev = "90c9b56a7fc313321fcc7580314284080d00078f"; + sha256 = "sha256-5VgXmm63O89wp6mayRf6ihMiK/JrXECfkmpo17MPEk4="; +} diff --git a/manifests/forc-call-0.1.1.nix b/manifests/forc-call-0.1.1.nix new file mode 100644 index 00000000..0a1256f0 --- /dev/null +++ b/manifests/forc-call-0.1.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.1"; + date = "2021-12-24"; + url = "https://github.com/fuellabs/sway"; + rev = "8a37329cb1848efdeb46e2be1bfdb940b7750262"; + sha256 = "sha256-Ci4OJGp+iqmojxmf4Cg9m/2WG8jtKOPMDr2z6LDsOdU="; +} diff --git a/manifests/forc-call-0.1.2.nix b/manifests/forc-call-0.1.2.nix new file mode 100644 index 00000000..5d173487 --- /dev/null +++ b/manifests/forc-call-0.1.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.2"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2431af753ed8fc0a76df53fc72172cb4bdb5d4b9"; + sha256 = "sha256-FYwNTSaaZdtDGbOQ5/Tk4+lvyZ3PCJBtnNLE6+PuEng="; +} diff --git a/manifests/forc-call-0.1.3.nix b/manifests/forc-call-0.1.3.nix new file mode 100644 index 00000000..58ce9908 --- /dev/null +++ b/manifests/forc-call-0.1.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.3"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "d30d3225a30c46a9675ca5db270597190cc228bc"; + sha256 = "sha256-3kvkiTVQ5qSLqBPb3kl2VakJfQlCOYaTY9aonRgN6AY="; +} diff --git a/manifests/forc-call-0.1.4.nix b/manifests/forc-call-0.1.4.nix new file mode 100644 index 00000000..7c72e9f8 --- /dev/null +++ b/manifests/forc-call-0.1.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.4"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "46305882aa552be287b28e55606ba74b81070460"; + sha256 = "sha256-/sFiQmmk/L+qqK9J/BrhPahg0no7YculAbB+TyB9s+Y="; +} diff --git a/manifests/forc-call-0.1.5.nix b/manifests/forc-call-0.1.5.nix new file mode 100644 index 00000000..cb6bc623 --- /dev/null +++ b/manifests/forc-call-0.1.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.5"; + date = "2021-12-27"; + url = "https://github.com/fuellabs/sway"; + rev = "1923f44784e6d450796b10addd447aeb3325d519"; + sha256 = "sha256-X/c/HRNrZu3s/wKU2l9pkuuXpqPFZvqeeziW/9iloK4="; +} diff --git a/manifests/forc-call-0.1.6.nix b/manifests/forc-call-0.1.6.nix new file mode 100644 index 00000000..15541b04 --- /dev/null +++ b/manifests/forc-call-0.1.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.6"; + date = "2021-12-28"; + url = "https://github.com/fuellabs/sway"; + rev = "a38a89a042f7ef13ddf67cc7661b37eac96aad8f"; + sha256 = "sha256-6HM7WTQsYaOXSvu8Jr0lh6KDQFpFJI+XybvzU8jFEic="; +} diff --git a/manifests/forc-call-0.1.7.nix b/manifests/forc-call-0.1.7.nix new file mode 100644 index 00000000..05ecc9cb --- /dev/null +++ b/manifests/forc-call-0.1.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.7"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "4038415bf9f681fca220bcf3951230b0e9129ba6"; + sha256 = "sha256-gcKYLveFcyiZtPxGjtk8W9dYCVdVUSsUMTW071WavX0="; +} diff --git a/manifests/forc-call-0.1.8.nix b/manifests/forc-call-0.1.8.nix new file mode 100644 index 00000000..3e78ca79 --- /dev/null +++ b/manifests/forc-call-0.1.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.8"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "6fd0bc0b6ecf22f3b334a0c8da86e776a7e2b87d"; + sha256 = "sha256-2M3FGiWEq++cQIkxECjSHabbVuMTkuvCx0eFIuOSeU0="; +} diff --git a/manifests/forc-call-0.1.9.nix b/manifests/forc-call-0.1.9.nix new file mode 100644 index 00000000..320b59b3 --- /dev/null +++ b/manifests/forc-call-0.1.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.1.9"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "6fe6354eb96fa9b85c10e89f628bdf7ee525059d"; + sha256 = "sha256-Bwn4w93PqCxMquIz52cWQ3u0xtZCXf5TzkKzQvnV15M="; +} diff --git a/manifests/forc-call-0.10.0.nix b/manifests/forc-call-0.10.0.nix new file mode 100644 index 00000000..5ec8b095 --- /dev/null +++ b/manifests/forc-call-0.10.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.10.0"; + date = "2022-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "a88ea439c95d9fb2701d6479ce496dc6571e92c2"; + sha256 = "sha256-YdU+xBfyQ6M4UVl/bgp5ba0byVUY7BMwryIZnradFNs="; +} diff --git a/manifests/forc-call-0.10.1.nix b/manifests/forc-call-0.10.1.nix new file mode 100644 index 00000000..7ff76d09 --- /dev/null +++ b/manifests/forc-call-0.10.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.10.1"; + date = "2022-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "5c85d2b712975669d238233297443557969dec43"; + sha256 = "sha256-8ocDTtJL468H3PpkQu5b9+lZtfjFP3MDK8YE2LtPYy4="; +} diff --git a/manifests/forc-call-0.10.2.nix b/manifests/forc-call-0.10.2.nix new file mode 100644 index 00000000..138e1851 --- /dev/null +++ b/manifests/forc-call-0.10.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.10.2"; + date = "2022-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "443abbffd520f0f964e837fbc784641741fd7950"; + sha256 = "sha256-qnU5g9Oxusr67zIIei9cAUqT7VVkA2VDXbarM1abOgc="; +} diff --git a/manifests/forc-call-0.10.3.nix b/manifests/forc-call-0.10.3.nix new file mode 100644 index 00000000..c9a931f9 --- /dev/null +++ b/manifests/forc-call-0.10.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.10.3"; + date = "2022-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "e7676db6f4ebc7a3885f87514d16a703a99410d7"; + sha256 = "sha256-/pWNhRZm+ev48LgpQhjGWuXG2TLvZSTpPHsZPLHcMiw="; +} diff --git a/manifests/forc-call-0.11.0.nix b/manifests/forc-call-0.11.0.nix new file mode 100644 index 00000000..e53567c1 --- /dev/null +++ b/manifests/forc-call-0.11.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.11.0"; + date = "2022-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "95816e4e41aae1d3425ba6ff5e7266076d8400fa"; + sha256 = "sha256-2XvtFdkQwUVlUVSjQeTUHlEROQ8r1GOcG8uCPM3uDTc="; +} diff --git a/manifests/forc-call-0.12.1.nix b/manifests/forc-call-0.12.1.nix new file mode 100644 index 00000000..1d669e20 --- /dev/null +++ b/manifests/forc-call-0.12.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.12.1"; + date = "2022-05-04"; + url = "https://github.com/fuellabs/sway"; + rev = "a03a5d1c068a91779e5ce08eead6c4626de2eb0d"; + sha256 = "sha256-nE10IRpnOkNHXfLfYhFhucjJ3JgdPW6AuNneLL14ymI="; +} diff --git a/manifests/forc-call-0.12.2.nix b/manifests/forc-call-0.12.2.nix new file mode 100644 index 00000000..70437b91 --- /dev/null +++ b/manifests/forc-call-0.12.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.12.2"; + date = "2022-05-12"; + url = "https://github.com/fuellabs/sway"; + rev = "2b6e9384f06692ec627293ae5db5e2f748fe2c30"; + sha256 = "sha256-HTo5eP8jZP5tzesGGA1i5YUmofsWxFJGKw0oMfvWv0c="; +} diff --git a/manifests/forc-call-0.13.0.nix b/manifests/forc-call-0.13.0.nix new file mode 100644 index 00000000..86d983f7 --- /dev/null +++ b/manifests/forc-call-0.13.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.13.0"; + date = "2022-05-19"; + url = "https://github.com/fuellabs/sway"; + rev = "6eef7ab750cd3282f08b6014960cbc02afae717a"; + sha256 = "sha256-iT90TBcMgmKTl/2MHR37Vtk7LcOshVMSshlU3BLhAG0="; +} diff --git a/manifests/forc-call-0.13.1.nix b/manifests/forc-call-0.13.1.nix new file mode 100644 index 00000000..c056973f --- /dev/null +++ b/manifests/forc-call-0.13.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.13.1"; + date = "2022-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "d73d9d2b4b547e2035ddfe085d439de56ccee1f0"; + sha256 = "sha256-jbuvLymTQb8g4ERJeu0K24z2OIw8aDlkBPF+YjiUkIE="; +} diff --git a/manifests/forc-call-0.13.2.nix b/manifests/forc-call-0.13.2.nix new file mode 100644 index 00000000..485b9811 --- /dev/null +++ b/manifests/forc-call-0.13.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.13.2"; + date = "2022-05-25"; + url = "https://github.com/fuellabs/sway"; + rev = "dac1b96419a6ed46a4c531492ae5e794a270d4a1"; + sha256 = "sha256-LBuJ2ukkK1FosaLcZ10ds8/7ybN1UU/o0d9dRmbG5a4="; +} diff --git a/manifests/forc-call-0.14.0.nix b/manifests/forc-call-0.14.0.nix new file mode 100644 index 00000000..acc0c3dd --- /dev/null +++ b/manifests/forc-call-0.14.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.14.0"; + date = "2022-05-26"; + url = "https://github.com/fuellabs/sway"; + rev = "953dad9cad0defe50ffe04e4031207fd247b63f1"; + sha256 = "sha256-/z+nNctB9t1qLKiemsg+QuV2jBnuYgd0tCe3cEkI1OU="; +} diff --git a/manifests/forc-call-0.14.1.nix b/manifests/forc-call-0.14.1.nix new file mode 100644 index 00000000..577445f9 --- /dev/null +++ b/manifests/forc-call-0.14.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.14.1"; + date = "2022-05-26"; + url = "https://github.com/fuellabs/sway"; + rev = "02ef7d10b6bf883d73fc1fd23034dc814dfffea2"; + sha256 = "sha256-8Uh2gbZb1R1llk3h+DeCF3heBO2Ec3nJNqI6hpSTfq8="; +} diff --git a/manifests/forc-call-0.14.2.nix b/manifests/forc-call-0.14.2.nix new file mode 100644 index 00000000..caa14cb2 --- /dev/null +++ b/manifests/forc-call-0.14.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.14.2"; + date = "2022-05-27"; + url = "https://github.com/fuellabs/sway"; + rev = "6fc5c69f29a5aab0b6ca677d9384d0d5eaffb232"; + sha256 = "sha256-JGicorHY6HfSWoZa2nFOnx45qDrnXmORzHOOKHk/6sM="; +} diff --git a/manifests/forc-call-0.14.3.nix b/manifests/forc-call-0.14.3.nix new file mode 100644 index 00000000..5400afa4 --- /dev/null +++ b/manifests/forc-call-0.14.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.14.3"; + date = "2022-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "17f856bfa0d500e06fff2c470e8e6113533faf97"; + sha256 = "sha256-VfyRHFmz89GT7UP/JCR8lPZY5vxhfxnyyWheQdWSRn0="; +} diff --git a/manifests/forc-call-0.14.4.nix b/manifests/forc-call-0.14.4.nix new file mode 100644 index 00000000..85841676 --- /dev/null +++ b/manifests/forc-call-0.14.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.14.4"; + date = "2022-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "b067a7dd64b26bd763eca268fef3849c2c77028d"; + sha256 = "sha256-VJGi0FlI+majMW66lo4Sxyo9NaaO+LgFyg7hHwckD1k="; +} diff --git a/manifests/forc-call-0.14.5.nix b/manifests/forc-call-0.14.5.nix new file mode 100644 index 00000000..22fd7c78 --- /dev/null +++ b/manifests/forc-call-0.14.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.14.5"; + date = "2022-06-01"; + url = "https://github.com/fuellabs/sway"; + rev = "60c626cf486d5c53c44d84db1ec81cb90174cad3"; + sha256 = "sha256-3zI62Q+jaZYml3PjHn5Xsx635ARfUPsXBpOGDc0QzVM="; +} diff --git a/manifests/forc-call-0.15.0.nix b/manifests/forc-call-0.15.0.nix new file mode 100644 index 00000000..f73657b4 --- /dev/null +++ b/manifests/forc-call-0.15.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.15.0"; + date = "2022-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "ee7822c411a3d6135ea590bbc5c85527c4ede6d7"; + sha256 = "sha256-7qdjLcxcKCHt+RNrVU9WRK+DUepB0G/5RkScHHWRFJQ="; +} diff --git a/manifests/forc-call-0.15.1.nix b/manifests/forc-call-0.15.1.nix new file mode 100644 index 00000000..696446cf --- /dev/null +++ b/manifests/forc-call-0.15.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.15.1"; + date = "2022-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "a34b4b99fcdd065d559f6cbb9dec0697c3f5edd1"; + sha256 = "sha256-kR1NJqI6fOyDne1zvwIG2M92+dSOn+6Hby+Q4iMJAAQ="; +} diff --git a/manifests/forc-call-0.15.2.nix b/manifests/forc-call-0.15.2.nix new file mode 100644 index 00000000..95932c08 --- /dev/null +++ b/manifests/forc-call-0.15.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.15.2"; + date = "2022-06-09"; + url = "https://github.com/fuellabs/sway"; + rev = "eab07e48bc6dbd0c80aedc1e363bb63a6d5f0e28"; + sha256 = "sha256-vE29EiJYF4T6FW/1odNJyZOc5HKHR5sC10bASSFcmuc="; +} diff --git a/manifests/forc-call-0.16.0.nix b/manifests/forc-call-0.16.0.nix new file mode 100644 index 00000000..34cf323d --- /dev/null +++ b/manifests/forc-call-0.16.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.16.0"; + date = "2022-06-16"; + url = "https://github.com/fuellabs/sway"; + rev = "948f7aba42b4138433fb5b61c698c8f4a60db424"; + sha256 = "sha256-5yPftMl1LJkub2yeGHF1BrLZZSYzg82IYFVpVWG0v48="; +} diff --git a/manifests/forc-call-0.16.1.nix b/manifests/forc-call-0.16.1.nix new file mode 100644 index 00000000..356c2595 --- /dev/null +++ b/manifests/forc-call-0.16.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.16.1"; + date = "2022-06-17"; + url = "https://github.com/fuellabs/sway"; + rev = "dcf22453aeb054335d96ef810da9d4f756d869b7"; + sha256 = "sha256-kAZVbgkf7ganCs+sBPL0eMmR3MDCm6s+qL8d1CfHL8U="; +} diff --git a/manifests/forc-call-0.16.2.nix b/manifests/forc-call-0.16.2.nix new file mode 100644 index 00000000..7006aec1 --- /dev/null +++ b/manifests/forc-call-0.16.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.16.2"; + date = "2022-06-24"; + url = "https://github.com/fuellabs/sway"; + rev = "7920330d34c97cf418b6d0e1561f978068158228"; + sha256 = "sha256-NpCpZYxgJeUcgw5QqnAhzVmEkMrR7cs2Sj6aW6Rm6JU="; +} diff --git a/manifests/forc-call-0.17.0.nix b/manifests/forc-call-0.17.0.nix new file mode 100644 index 00000000..38650d9f --- /dev/null +++ b/manifests/forc-call-0.17.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.17.0"; + date = "2022-07-01"; + url = "https://github.com/fuellabs/sway"; + rev = "b81bcd9652d4fc9908d1971c9215a7cfdde39adc"; + sha256 = "sha256-cOyJXvwyZbZeTLfw9xoAtY1rsHN29VXLkRsEeCZyDmI="; +} diff --git a/manifests/forc-call-0.18.0.nix b/manifests/forc-call-0.18.0.nix new file mode 100644 index 00000000..e64d8e25 --- /dev/null +++ b/manifests/forc-call-0.18.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.18.0"; + date = "2022-07-08"; + url = "https://github.com/fuellabs/sway"; + rev = "ada0d294a68e5ca3070e3c46eb89619e7d87caf2"; + sha256 = "sha256-9a39KoLnQ7urf7pBwxFy8B2+SELuhhx6JDZjyZo2rSQ="; +} diff --git a/manifests/forc-call-0.18.1.nix b/manifests/forc-call-0.18.1.nix new file mode 100644 index 00000000..d525c1b6 --- /dev/null +++ b/manifests/forc-call-0.18.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.18.1"; + date = "2022-07-11"; + url = "https://github.com/fuellabs/sway"; + rev = "3bd8eaf4a0f11a3009c9421100cc06c2e897b6c2"; + sha256 = "sha256-WI7srBdT5WAMZ6OfUWAcihZcpxbn/ogfVE3LaoQptcM="; +} diff --git a/manifests/forc-call-0.19.0.nix b/manifests/forc-call-0.19.0.nix new file mode 100644 index 00000000..b78ed79b --- /dev/null +++ b/manifests/forc-call-0.19.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.19.0"; + date = "2022-07-27"; + url = "https://github.com/fuellabs/sway"; + rev = "5c716e1ba55d755555ed5aa186c883f73c4f90dc"; + sha256 = "sha256-DKB7ykAHVte8Dt566iNdY6CIkvs06zRxCWT50LoQRBk="; +} diff --git a/manifests/forc-call-0.19.1.nix b/manifests/forc-call-0.19.1.nix new file mode 100644 index 00000000..ef42161b --- /dev/null +++ b/manifests/forc-call-0.19.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.19.1"; + date = "2022-08-01"; + url = "https://github.com/fuellabs/sway"; + rev = "1202e790c119ff9f04c847ecaab3411cfaf32f94"; + sha256 = "sha256-jFtMg6C861fIWZBmX5SbSsvQwPUr+KWQOcQnPDweWUo="; +} diff --git a/manifests/forc-call-0.19.2.nix b/manifests/forc-call-0.19.2.nix new file mode 100644 index 00000000..5c62789a --- /dev/null +++ b/manifests/forc-call-0.19.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.19.2"; + date = "2022-08-08"; + url = "https://github.com/fuellabs/sway"; + rev = "6808861389966f99887f71476918a562a9edd90e"; + sha256 = "sha256-LL5jMwMvw//bN8SkI5K/tNF+7NKuuOXpcMGezEmrQ4g="; +} diff --git a/manifests/forc-call-0.2.0.nix b/manifests/forc-call-0.2.0.nix new file mode 100644 index 00000000..a96f9e54 --- /dev/null +++ b/manifests/forc-call-0.2.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.2.0"; + date = "2022-01-06"; + url = "https://github.com/fuellabs/sway"; + rev = "38479274e0c50518e20c919682b8173ae4a555d3"; + sha256 = "sha256-48BfRiY2evrKlcz1bXBWoWQgRtkk4jc2r3GZRj28sPo="; +} diff --git a/manifests/forc-call-0.2.1.nix b/manifests/forc-call-0.2.1.nix new file mode 100644 index 00000000..d7aac361 --- /dev/null +++ b/manifests/forc-call-0.2.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.2.1"; + date = "2022-01-07"; + url = "https://github.com/fuellabs/sway"; + rev = "a790fd729b2021f837be924c7b8b21099b9f6c12"; + sha256 = "sha256-TUQQa1uE9JuZzEnXxrOAeBplNkzt9MRWzPjxZdECZg8="; +} diff --git a/manifests/forc-call-0.20.0.nix b/manifests/forc-call-0.20.0.nix new file mode 100644 index 00000000..1d50a67b --- /dev/null +++ b/manifests/forc-call-0.20.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.20.0"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "fc3a05d87d1178e937fc5e4742b13fcca490057d"; + sha256 = "sha256-gJaLWboU9LNEn9Xu+0AIveFvG3wCTMH1P95H+DVJCRw="; +} diff --git a/manifests/forc-call-0.20.1.nix b/manifests/forc-call-0.20.1.nix new file mode 100644 index 00000000..2cd23920 --- /dev/null +++ b/manifests/forc-call-0.20.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.20.1"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "21887f4b321bfacb16c7a6602071e3b6ea1c8df1"; + sha256 = "sha256-mO7vojv7gEfBJaEmBW2uQTo1ecLNoTL6E1o1d68saBQ="; +} diff --git a/manifests/forc-call-0.20.2.nix b/manifests/forc-call-0.20.2.nix new file mode 100644 index 00000000..853a8a19 --- /dev/null +++ b/manifests/forc-call-0.20.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.20.2"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "6a8116fcee71aa960217b1672bac0c35d1fce42c"; + sha256 = "sha256-JfjHda4vRGPiZ2EhJbGMzpSJ24bFFS3WlPxtXmI3mno="; +} diff --git a/manifests/forc-call-0.21.0.nix b/manifests/forc-call-0.21.0.nix new file mode 100644 index 00000000..cba34be5 --- /dev/null +++ b/manifests/forc-call-0.21.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.21.0"; + date = "2022-08-29"; + url = "https://github.com/fuellabs/sway"; + rev = "32b5b142b54d3d38ae1f7df69f465138e86de82d"; + sha256 = "sha256-joWJifoFBzzK9FdhQwyYwVuDU4/8hQzmrUgD7+2BSJY="; +} diff --git a/manifests/forc-call-0.22.0.nix b/manifests/forc-call-0.22.0.nix new file mode 100644 index 00000000..a88ceed2 --- /dev/null +++ b/manifests/forc-call-0.22.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.22.0"; + date = "2022-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "6e1fbca21f0979d226efd7ceea5b6d71696536cd"; + sha256 = "sha256-cK7YReHEq3Z/wVV6bxTohdHI9c2zSz53Sej8GCWSIrI="; +} diff --git a/manifests/forc-call-0.22.1.nix b/manifests/forc-call-0.22.1.nix new file mode 100644 index 00000000..c1dfb72a --- /dev/null +++ b/manifests/forc-call-0.22.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.22.1"; + date = "2022-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "c486eabc3ed4d8c53b63735188f2c1db5d17703c"; + sha256 = "sha256-fChGs4bPxg82noIJooec6Tk908T8BrDUWH6YQNvAuhg="; +} diff --git a/manifests/forc-call-0.23.0.nix b/manifests/forc-call-0.23.0.nix new file mode 100644 index 00000000..7fb24683 --- /dev/null +++ b/manifests/forc-call-0.23.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.23.0"; + date = "2022-09-03"; + url = "https://github.com/fuellabs/sway"; + rev = "4712e5b26c6c0f778d7771ef1b35a229fe3a371d"; + sha256 = "sha256-ZdH69u5DOe/fjARXWpJe0J21K/rVL4YJD5/qHQdlr50="; +} diff --git a/manifests/forc-call-0.24.0.nix b/manifests/forc-call-0.24.0.nix new file mode 100644 index 00000000..735bc0f6 --- /dev/null +++ b/manifests/forc-call-0.24.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.24.0"; + date = "2022-09-06"; + url = "https://github.com/fuellabs/sway"; + rev = "ea4f1b7885248c2b4c4d0da394c2cc50ea1583e8"; + sha256 = "sha256-2DwlfRw+aw9g4E2wPeomlGH/qe6O0kKha3Vu3+HY4AI="; +} diff --git a/manifests/forc-call-0.24.1.nix b/manifests/forc-call-0.24.1.nix new file mode 100644 index 00000000..0c21d3f2 --- /dev/null +++ b/manifests/forc-call-0.24.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.24.1"; + date = "2022-09-07"; + url = "https://github.com/fuellabs/sway"; + rev = "54e1a340e6c0c9a675e8a66aab03f579d5d6b39b"; + sha256 = "sha256-t/VFaYCANGY5CM2FFrLhNiBB5eAL/CFCZvIzigr3d1I="; +} diff --git a/manifests/forc-call-0.24.2.nix b/manifests/forc-call-0.24.2.nix new file mode 100644 index 00000000..f2d38f7b --- /dev/null +++ b/manifests/forc-call-0.24.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.24.2"; + date = "2022-09-09"; + url = "https://github.com/fuellabs/sway"; + rev = "057e83aee87d17c3812f223f5fc7884cf6d3468a"; + sha256 = "sha256-XQePJ7tvPqjAAnqdpavkUxuCtH8MmaiXSDrhIUpjVQo="; +} diff --git a/manifests/forc-call-0.24.3.nix b/manifests/forc-call-0.24.3.nix new file mode 100644 index 00000000..4e91c08c --- /dev/null +++ b/manifests/forc-call-0.24.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.24.3"; + date = "2022-09-12"; + url = "https://github.com/fuellabs/sway"; + rev = "95cd150cacef407a1f30c89899c539b0d57f099d"; + sha256 = "sha256-oWQpD2HohdjQ0lcnOjipT0oTIX68KnoWy13FeXYKi7E="; +} diff --git a/manifests/forc-call-0.24.4.nix b/manifests/forc-call-0.24.4.nix new file mode 100644 index 00000000..11b8f409 --- /dev/null +++ b/manifests/forc-call-0.24.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.24.4"; + date = "2022-09-16"; + url = "https://github.com/fuellabs/sway"; + rev = "f7800e18979dd8e4c8d672b8e7aae1758c2edb88"; + sha256 = "sha256-jRqUQv7nsv0xq+CNrEYCnt0yfiVycTUF3eYOMt/DCdQ="; +} diff --git a/manifests/forc-call-0.24.5.nix b/manifests/forc-call-0.24.5.nix new file mode 100644 index 00000000..b8557df0 --- /dev/null +++ b/manifests/forc-call-0.24.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.24.5"; + date = "2022-09-24"; + url = "https://github.com/fuellabs/sway"; + rev = "e695606d8884a18664f6231681333a784e623bc9"; + sha256 = "sha256-gsLMsR+sFj3tvE86JvKzj95aMp1o9ERBkTskr+ejUhM="; +} diff --git a/manifests/forc-call-0.25.0.nix b/manifests/forc-call-0.25.0.nix new file mode 100644 index 00000000..a0e3b61a --- /dev/null +++ b/manifests/forc-call-0.25.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.25.0"; + date = "2022-10-05"; + url = "https://github.com/fuellabs/sway"; + rev = "0f84734f6f95a8598d701b087e486caacf23f514"; + sha256 = "sha256-tXUEiGKpq7H5nSUICGlUeUJtDnKjwDpBvzl5d3jd8OE="; +} diff --git a/manifests/forc-call-0.25.1.nix b/manifests/forc-call-0.25.1.nix new file mode 100644 index 00000000..b512ae27 --- /dev/null +++ b/manifests/forc-call-0.25.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.25.1"; + date = "2022-10-06"; + url = "https://github.com/fuellabs/sway"; + rev = "cc9740bea1438cdde7f15fa0d0c2eba705b6aef1"; + sha256 = "sha256-YeTt1+D8e3VnqBmn5VWa/NUlDEOzf8zxeuYh5QXBEVM="; +} diff --git a/manifests/forc-call-0.25.2.nix b/manifests/forc-call-0.25.2.nix new file mode 100644 index 00000000..c9cd9135 --- /dev/null +++ b/manifests/forc-call-0.25.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.25.2"; + date = "2022-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "dfa6224932a97c514b707dcfc300715b2a0895dc"; + sha256 = "sha256-rZrjzlGIdv1ul2xb94YkkUqXWEbACFQKXirpa/uuITs="; +} diff --git a/manifests/forc-call-0.26.0.nix b/manifests/forc-call-0.26.0.nix new file mode 100644 index 00000000..37e8aab1 --- /dev/null +++ b/manifests/forc-call-0.26.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.26.0"; + date = "2022-10-13"; + url = "https://github.com/fuellabs/sway"; + rev = "e7674f704f2706e22f77c0ed32df9c89302e5e7e"; + sha256 = "sha256-S7jlje5wd2RiO4+IDjoWUiN19h21DK1sUWlziwxb+3I="; +} diff --git a/manifests/forc-call-0.27.0.nix b/manifests/forc-call-0.27.0.nix new file mode 100644 index 00000000..028f9864 --- /dev/null +++ b/manifests/forc-call-0.27.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.27.0"; + date = "2022-10-23"; + url = "https://github.com/fuellabs/sway"; + rev = "40f1e79de08af109f2ebb066f51704f36094ed1e"; + sha256 = "sha256-qIso6YBCs4HKu1fAqM0fgq0vcaOqgGeZ2CY0ZLjTm+o="; +} diff --git a/manifests/forc-call-0.28.0.nix b/manifests/forc-call-0.28.0.nix new file mode 100644 index 00000000..baee9c71 --- /dev/null +++ b/manifests/forc-call-0.28.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.28.0"; + date = "2022-10-25"; + url = "https://github.com/fuellabs/sway"; + rev = "a7978381effcf999adc5726587bf8f711f04e414"; + sha256 = "sha256-3xqbdGXjWIfdZV7po64bp+N79MGfEkL0fRyKcel0A2s="; +} diff --git a/manifests/forc-call-0.28.1.nix b/manifests/forc-call-0.28.1.nix new file mode 100644 index 00000000..9198c41f --- /dev/null +++ b/manifests/forc-call-0.28.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.28.1"; + date = "2022-10-25"; + url = "https://github.com/fuellabs/sway"; + rev = "84f9aad376760cd9c8eacc8a4848bffeb25bf9a5"; + sha256 = "sha256-S5sB6ahI7P2Qv4Rh3GTE7lkYcEAbp1znpW/hlkyuh9U="; +} diff --git a/manifests/forc-call-0.29.0.nix b/manifests/forc-call-0.29.0.nix new file mode 100644 index 00000000..cd03e956 --- /dev/null +++ b/manifests/forc-call-0.29.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.29.0"; + date = "2022-10-31"; + url = "https://github.com/fuellabs/sway"; + rev = "dc8e5f6b84741a3a690ba25b473f8b1e01e31103"; + sha256 = "sha256-HVGhxE8PgPcCok8BE7ESmlbC3RHAOT6QtdhB0W60D6g="; +} diff --git a/manifests/forc-call-0.3.0.nix b/manifests/forc-call-0.3.0.nix new file mode 100644 index 00000000..2f48c76c --- /dev/null +++ b/manifests/forc-call-0.3.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.3.0"; + date = "2022-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "b81eee7d23af71958ba1a3276855949277902a57"; + sha256 = "sha256-25ZOELcJchuJapvGZFigzsl3BPEUW/R3f5NhvoXBKeE="; +} diff --git a/manifests/forc-call-0.3.1.nix b/manifests/forc-call-0.3.1.nix new file mode 100644 index 00000000..c5eae278 --- /dev/null +++ b/manifests/forc-call-0.3.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.3.1"; + date = "2022-01-23"; + url = "https://github.com/fuellabs/sway"; + rev = "d9b5a1103a1f37672d6f09c8dae34b813872d44b"; + sha256 = "sha256-eYVjjBkg6Gxc7mKMl7oaK3Ws2XVDHWAt+z3WIjGM3Xs="; +} diff --git a/manifests/forc-call-0.3.2.nix b/manifests/forc-call-0.3.2.nix new file mode 100644 index 00000000..e5e37cc2 --- /dev/null +++ b/manifests/forc-call-0.3.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.3.2"; + date = "2022-01-27"; + url = "https://github.com/fuellabs/sway"; + rev = "3012191420362e9ba1df0324b2a9e80eeded7e1d"; + sha256 = "sha256-5AirUGidtaNFfVf4uSutfrEvs2wd/ROiDyudYHb2EWQ="; +} diff --git a/manifests/forc-call-0.3.3.nix b/manifests/forc-call-0.3.3.nix new file mode 100644 index 00000000..b4f8bcf6 --- /dev/null +++ b/manifests/forc-call-0.3.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.3.3"; + date = "2022-01-27"; + url = "https://github.com/fuellabs/sway"; + rev = "441ab123839f2eb4f5dd1b055fdbe5a5b26a6736"; + sha256 = "sha256-QI8nqWfKr+/yGP96NnNdpKGwHHzA6UxEyQvjwQLgcSU="; +} diff --git a/manifests/forc-call-0.30.0.nix b/manifests/forc-call-0.30.0.nix new file mode 100644 index 00000000..172a218a --- /dev/null +++ b/manifests/forc-call-0.30.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.30.0"; + date = "2022-11-02"; + url = "https://github.com/fuellabs/sway"; + rev = "37deaee8fccf5804d78a003cf64f14fac654fc41"; + sha256 = "sha256-BIVBDX3i2ym6d/90AuK/I/ATtJqUFZS9OdltCdBtqI0="; +} diff --git a/manifests/forc-call-0.30.1.nix b/manifests/forc-call-0.30.1.nix new file mode 100644 index 00000000..c3818ffd --- /dev/null +++ b/manifests/forc-call-0.30.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.30.1"; + date = "2022-11-04"; + url = "https://github.com/fuellabs/sway"; + rev = "158f22115bf000d45862be95ff7fdb0ff5bdee4d"; + sha256 = "sha256-m0y1Zy0iyWCuyqfMhYGQ2myb4zhcZHqLRZIk4ZWZ338="; +} diff --git a/manifests/forc-call-0.31.0.nix b/manifests/forc-call-0.31.0.nix new file mode 100644 index 00000000..a59ea190 --- /dev/null +++ b/manifests/forc-call-0.31.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.31.0"; + date = "2022-11-09"; + url = "https://github.com/fuellabs/sway"; + rev = "7a389ddb35bae051938e5441c8ef4a8b63dd269c"; + sha256 = "sha256-fRGQtZxDPD0sPfpt6xKYOaR9Ty1NDqR8El6rRIuU83M="; +} diff --git a/manifests/forc-call-0.31.1.nix b/manifests/forc-call-0.31.1.nix new file mode 100644 index 00000000..51e337f2 --- /dev/null +++ b/manifests/forc-call-0.31.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.31.1"; + date = "2022-11-11"; + url = "https://github.com/fuellabs/sway"; + rev = "c32b0759d25c0b515cbf535f9fb9b8e6fda38ff2"; + sha256 = "sha256-5GlH4fTix4r+b66tsE1vx/iyJCsNPnWjfuY7Iu36234="; +} diff --git a/manifests/forc-call-0.31.2.nix b/manifests/forc-call-0.31.2.nix new file mode 100644 index 00000000..b510f428 --- /dev/null +++ b/manifests/forc-call-0.31.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.31.2"; + date = "2022-11-29"; + url = "https://github.com/fuellabs/sway"; + rev = "12239f7d57441a75b0979f2f34d5151a777a5c0a"; + sha256 = "sha256-9qHs1OatcgPBSLToDkCvTfTXxeAOTjrM1jABQZxqUaI="; +} diff --git a/manifests/forc-call-0.31.3.nix b/manifests/forc-call-0.31.3.nix new file mode 100644 index 00000000..0e338c3a --- /dev/null +++ b/manifests/forc-call-0.31.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.31.3"; + date = "2022-11-30"; + url = "https://github.com/fuellabs/sway"; + rev = "12ad8423811d566972dd75fbb954cdb95afde8d8"; + sha256 = "sha256-vsRRV7NAxSQw+NlZr7dUe2g0Hd8LSjkyXxDiygVfb54="; +} diff --git a/manifests/forc-call-0.32.0.nix b/manifests/forc-call-0.32.0.nix new file mode 100644 index 00000000..599f42c0 --- /dev/null +++ b/manifests/forc-call-0.32.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.32.0"; + date = "2022-12-14"; + url = "https://github.com/fuellabs/sway"; + rev = "ed1610a2f6bce5fba39ec53fe7da1ba2f05da4ce"; + sha256 = "sha256-ZteML6BecCLkj7w5fVJcRVxRYpZocpgNXuNRjDszEYc="; +} diff --git a/manifests/forc-call-0.32.1.nix b/manifests/forc-call-0.32.1.nix new file mode 100644 index 00000000..76538298 --- /dev/null +++ b/manifests/forc-call-0.32.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.32.1"; + date = "2022-12-14"; + url = "https://github.com/fuellabs/sway"; + rev = "50c1b6c858c044acf88760cb7eb1b39d076f322d"; + sha256 = "sha256-GnF8eHwhcCC0Yr73jNVjyZUh1lOU9YmFslFzeZnSqHo="; +} diff --git a/manifests/forc-call-0.32.2.nix b/manifests/forc-call-0.32.2.nix new file mode 100644 index 00000000..a2c4d7da --- /dev/null +++ b/manifests/forc-call-0.32.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.32.2"; + date = "2022-12-15"; + url = "https://github.com/fuellabs/sway"; + rev = "b9996f13463c324e256014935c053c334b880ab5"; + sha256 = "sha256-ZCAsObQ50XJnsc64XFB/6ia8fjX3vi4rHug6FuC2ySc="; +} diff --git a/manifests/forc-call-0.33.0.nix b/manifests/forc-call-0.33.0.nix new file mode 100644 index 00000000..42aa010a --- /dev/null +++ b/manifests/forc-call-0.33.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.33.0"; + date = "2023-01-05"; + url = "https://github.com/fuellabs/sway"; + rev = "2b2b4b117c4f6a5e762e368af0dfc6896fa31e7d"; + sha256 = "sha256-K/RT9WFv1uGpBbwckvhcvXPdEnNjluSd2f7CNdjeGhQ="; +} diff --git a/manifests/forc-call-0.33.1.nix b/manifests/forc-call-0.33.1.nix new file mode 100644 index 00000000..d8883579 --- /dev/null +++ b/manifests/forc-call-0.33.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.33.1"; + date = "2023-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "acd4c1e0fbdc406800a06c845430a80dd3560fcc"; + sha256 = "sha256-00KVxZUcyCrE4RT2WrmHtxFFFyxLuiD6nJV9PoDzHng="; +} diff --git a/manifests/forc-call-0.34.0.nix b/manifests/forc-call-0.34.0.nix new file mode 100644 index 00000000..90eb7611 --- /dev/null +++ b/manifests/forc-call-0.34.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.34.0"; + date = "2023-02-01"; + url = "https://github.com/fuellabs/sway"; + rev = "ddb0ede05e649489b554da4f7a8003b507443ad0"; + sha256 = "sha256-LI/cJybVpg/cpY6vD5YdmlAJkPc0q9hIeGlE4j+YfAc="; +} diff --git a/manifests/forc-call-0.35.0.nix b/manifests/forc-call-0.35.0.nix new file mode 100644 index 00000000..74c32898 --- /dev/null +++ b/manifests/forc-call-0.35.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.35.0"; + date = "2023-02-08"; + url = "https://github.com/fuellabs/sway"; + rev = "b6f19a3be7b2fb5ef88e358a926854dac10cb281"; + sha256 = "sha256-gXmI2j0z7OP3iXMT8F7HNH4Gvei6aFxluYRgbiyU7fo="; +} diff --git a/manifests/forc-call-0.35.1.nix b/manifests/forc-call-0.35.1.nix new file mode 100644 index 00000000..54257af1 --- /dev/null +++ b/manifests/forc-call-0.35.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.35.1"; + date = "2023-02-15"; + url = "https://github.com/fuellabs/sway"; + rev = "1f9debfaf9b85d41f3b704c45633eb4daddcb594"; + sha256 = "sha256-dcPtllP66f7J5YVqY+T9gj9DvOZX1fvZb2EOCi3DsRM="; +} diff --git a/manifests/forc-call-0.35.2.nix b/manifests/forc-call-0.35.2.nix new file mode 100644 index 00000000..dff06928 --- /dev/null +++ b/manifests/forc-call-0.35.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.35.2"; + date = "2023-02-17"; + url = "https://github.com/fuellabs/sway"; + rev = "f05ecaf2de1ebe3b3da80ecd8eb6053a84145cf4"; + sha256 = "sha256-FArhyYdJxGWDkJ0gpVufzbMfsQ4ZHiPqQu/9W3mUWco="; +} diff --git a/manifests/forc-call-0.35.3.nix b/manifests/forc-call-0.35.3.nix new file mode 100644 index 00000000..5ae08018 --- /dev/null +++ b/manifests/forc-call-0.35.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.35.3"; + date = "2023-02-21"; + url = "https://github.com/fuellabs/sway"; + rev = "5d2b10bd83791d2eaff04206dbd45bfdd9cf23ff"; + sha256 = "sha256-hHQRdaQR3Qs05VfLc0nJD3lFldGuYTT6XQbszplA3vA="; +} diff --git a/manifests/forc-call-0.35.4.nix b/manifests/forc-call-0.35.4.nix new file mode 100644 index 00000000..d88aa30f --- /dev/null +++ b/manifests/forc-call-0.35.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.35.4"; + date = "2023-03-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3770dd8c21540e54dee818aa5cbc0a6170102695"; + sha256 = "sha256-8e10JdvWKDarXNFk5Oyc1I3+5s108M2ck/yLTIlVI5I="; +} diff --git a/manifests/forc-call-0.35.5.nix b/manifests/forc-call-0.35.5.nix new file mode 100644 index 00000000..c19435f5 --- /dev/null +++ b/manifests/forc-call-0.35.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.35.5"; + date = "2023-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "49eae2dd93a1957e2a2c2fb3f51b11eb3791fc24"; + sha256 = "sha256-RibkxvZno7nLScV14AwnndbzJ29IWTSFQ/xB4PmO5ZE="; +} diff --git a/manifests/forc-call-0.36.0.nix b/manifests/forc-call-0.36.0.nix new file mode 100644 index 00000000..6d9ce3f8 --- /dev/null +++ b/manifests/forc-call-0.36.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.36.0"; + date = "2023-04-04"; + url = "https://github.com/fuellabs/sway"; + rev = "77f575ab7921fdb23d5373072272512264bd99f4"; + sha256 = "sha256-GeQ643/pJahTBmGTtIUl34QH4UCYvfeeQuFXKnlN2Ng="; +} diff --git a/manifests/forc-call-0.36.1.nix b/manifests/forc-call-0.36.1.nix new file mode 100644 index 00000000..85579ee2 --- /dev/null +++ b/manifests/forc-call-0.36.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.36.1"; + date = "2023-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "92818a4d5ec89b5d4fb62196261cf578d58e52e3"; + sha256 = "sha256-F+qUImoSCv8H90IOpmtdIYSmNdLZivkN/Nm7W3oUdM4="; +} diff --git a/manifests/forc-call-0.37.0.nix b/manifests/forc-call-0.37.0.nix new file mode 100644 index 00000000..8b7e952d --- /dev/null +++ b/manifests/forc-call-0.37.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.37.0"; + date = "2023-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "607ac50176db8bef936f91bacf435d0ea37d041e"; + sha256 = "sha256-+FrktHUq2mX2u4fl4C9hLrV8fQ9DrSSbpf5umSMHQNw="; +} diff --git a/manifests/forc-call-0.37.1.nix b/manifests/forc-call-0.37.1.nix new file mode 100644 index 00000000..2d16611a --- /dev/null +++ b/manifests/forc-call-0.37.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.37.1"; + date = "2023-04-13"; + url = "https://github.com/fuellabs/sway"; + rev = "83e5479462ed2883591669a42552606ac25f0a04"; + sha256 = "sha256-fR9E77G2Vc+StVZ/whmnan2/hWZFKPjoRJsJHV2MI5k="; +} diff --git a/manifests/forc-call-0.37.2.nix b/manifests/forc-call-0.37.2.nix new file mode 100644 index 00000000..ccdc7115 --- /dev/null +++ b/manifests/forc-call-0.37.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.37.2"; + date = "2023-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "dc6af913939698452359474c33ecebe0ad35ca48"; + sha256 = "sha256-DA3ryR//UYhbX8nSWiA+UL23TyejhfMzTbmFhDte/OY="; +} diff --git a/manifests/forc-call-0.37.3.nix b/manifests/forc-call-0.37.3.nix new file mode 100644 index 00000000..b636772b --- /dev/null +++ b/manifests/forc-call-0.37.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.37.3"; + date = "2023-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "d09ef912828f5fc7193501ccf8a0d0fb0f36a821"; + sha256 = "sha256-+s9bBrFC5Mun+FwaYS28Wn9nPyxaACAfiW0tuKRPQvg="; +} diff --git a/manifests/forc-call-0.38.0.nix b/manifests/forc-call-0.38.0.nix new file mode 100644 index 00000000..91a66570 --- /dev/null +++ b/manifests/forc-call-0.38.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.38.0"; + date = "2023-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2d16d70ab9d5ab0de0255941048f811b6d07c6b1"; + sha256 = "sha256-xweooodyzG11dWyrrP3MZ6e0vSnkk20svbgbIXkBolw="; +} diff --git a/manifests/forc-call-0.39.0.nix b/manifests/forc-call-0.39.0.nix new file mode 100644 index 00000000..03e5d3fc --- /dev/null +++ b/manifests/forc-call-0.39.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.39.0"; + date = "2023-05-17"; + url = "https://github.com/fuellabs/sway"; + rev = "7a095280e7e1c0bfbbfc201867896e720aab7209"; + sha256 = "sha256-zUzS+IKW2eNbd3L0lArS4BqJ1bkecnxDN62tCIIvYb8="; +} diff --git a/manifests/forc-call-0.39.1.nix b/manifests/forc-call-0.39.1.nix new file mode 100644 index 00000000..57918b36 --- /dev/null +++ b/manifests/forc-call-0.39.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.39.1"; + date = "2023-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "e3065657c907225a8fdfe2d2210a7a3bd2b55c73"; + sha256 = "sha256-ytLjZOrHW8XkqzwVRoTPNrzozDF1jmYxxKGVxGqS2G4="; +} diff --git a/manifests/forc-call-0.4.0.nix b/manifests/forc-call-0.4.0.nix new file mode 100644 index 00000000..9c32364c --- /dev/null +++ b/manifests/forc-call-0.4.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.4.0"; + date = "2022-02-08"; + url = "https://github.com/fuellabs/sway"; + rev = "6332f9ad955e1f8e744cc87e07d028092874e0d5"; + sha256 = "sha256-lDyAgfNC5ezqptxuM7lycuVEofI5W62hzY011MzXUt8="; +} diff --git a/manifests/forc-call-0.40.0.nix b/manifests/forc-call-0.40.0.nix new file mode 100644 index 00000000..1da69630 --- /dev/null +++ b/manifests/forc-call-0.40.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.40.0"; + date = "2023-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "164c7c8bea3ce264581058d4165df71ee761e0b3"; + sha256 = "sha256-J3csh7R4IydBXmq3cY/hbHlVWiXcfhkDA9XLSH8PD58="; +} diff --git a/manifests/forc-call-0.40.1.nix b/manifests/forc-call-0.40.1.nix new file mode 100644 index 00000000..c9f1d8ea --- /dev/null +++ b/manifests/forc-call-0.40.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.40.1"; + date = "2023-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "48104d0bde0d343154a5bc39a310092532883235"; + sha256 = "sha256-6qGMJ5W+/b9ZW+IBgvK0FXmDYWk5Yalund1mgb50yPg="; +} diff --git a/manifests/forc-call-0.41.0.nix b/manifests/forc-call-0.41.0.nix new file mode 100644 index 00000000..33a04932 --- /dev/null +++ b/manifests/forc-call-0.41.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.41.0"; + date = "2023-06-30"; + url = "https://github.com/fuellabs/sway"; + rev = "0d45b890c9eaa75b88093a9a4cbecbf5ca8c0731"; + sha256 = "sha256-G9KOf1V44mXHMoqhWHUu68NOywE1pcOIhV1eB2DU44g="; +} diff --git a/manifests/forc-call-0.42.0.nix b/manifests/forc-call-0.42.0.nix new file mode 100644 index 00000000..ada5f0a6 --- /dev/null +++ b/manifests/forc-call-0.42.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.42.0"; + date = "2023-07-06"; + url = "https://github.com/fuellabs/sway"; + rev = "c4e4ef7e4ae52a21ae1aa709d1f43ac680987bd1"; + sha256 = "sha256-6kSeffKJqJCA4jpfFSDFOpu/d15qeh4lk/CYp/qd148="; +} diff --git a/manifests/forc-call-0.42.1.nix b/manifests/forc-call-0.42.1.nix new file mode 100644 index 00000000..831f76ae --- /dev/null +++ b/manifests/forc-call-0.42.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.42.1"; + date = "2023-07-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3b66f8e424bd21e3ba467783b10b36e808cfa6ee"; + sha256 = "sha256-lFBConaiCIcElcN35eZH8WW+opGc2bur+UZkw8wPtTw="; +} diff --git a/manifests/forc-call-0.43.0.nix b/manifests/forc-call-0.43.0.nix new file mode 100644 index 00000000..b5db62d0 --- /dev/null +++ b/manifests/forc-call-0.43.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.43.0"; + date = "2023-08-02"; + url = "https://github.com/fuellabs/sway"; + rev = "3efc60e22b4a7b6898b2cb0c678a36fccbe1b9c9"; + sha256 = "sha256-V56LmioCJyq50586GqeveEj79Yd1j859BbYW6yJAuow="; +} diff --git a/manifests/forc-call-0.43.1.nix b/manifests/forc-call-0.43.1.nix new file mode 100644 index 00000000..d35b6edc --- /dev/null +++ b/manifests/forc-call-0.43.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.43.1"; + date = "2023-08-03"; + url = "https://github.com/fuellabs/sway"; + rev = "923157bcf1dbda7f3a58effcef22fcccd11fcfbc"; + sha256 = "sha256-/Tr9oexI8EyIQdp45VvaHGGlRc5jyK4B0a/8mUrflnI="; +} diff --git a/manifests/forc-call-0.43.2.nix b/manifests/forc-call-0.43.2.nix new file mode 100644 index 00000000..3a0abba4 --- /dev/null +++ b/manifests/forc-call-0.43.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.43.2"; + date = "2023-08-03"; + url = "https://github.com/fuellabs/sway"; + rev = "d8cf6118405164359fdf420c95cd07342e0eca8b"; + sha256 = "sha256-g4u8pGUaxRAZ+t3qo5NamSciWDSeQIKZIORvAUcAFuI="; +} diff --git a/manifests/forc-call-0.44.0.nix b/manifests/forc-call-0.44.0.nix new file mode 100644 index 00000000..0ef7baf2 --- /dev/null +++ b/manifests/forc-call-0.44.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.44.0"; + date = "2023-08-14"; + url = "https://github.com/fuellabs/sway"; + rev = "241d30f7cde5cdd1f378eb2bc1daae945f329d0c"; + sha256 = "sha256-xYpxwBARtWVgLm9yN50/5olOJ8smGCPYZY8kVbrxXuI="; +} diff --git a/manifests/forc-call-0.44.1.nix b/manifests/forc-call-0.44.1.nix new file mode 100644 index 00000000..1242c7f0 --- /dev/null +++ b/manifests/forc-call-0.44.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.44.1"; + date = "2023-08-16"; + url = "https://github.com/fuellabs/sway"; + rev = "04a597093e7441898933dd412b8e4dc6ac860cd3"; + sha256 = "sha256-Up8C2e27cM8UYr52jhxA84tNz0CeFpLepH7A/l025v4="; +} diff --git a/manifests/forc-call-0.45.0.nix b/manifests/forc-call-0.45.0.nix new file mode 100644 index 00000000..9e15c380 --- /dev/null +++ b/manifests/forc-call-0.45.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.45.0"; + date = "2023-08-25"; + url = "https://github.com/fuellabs/sway"; + rev = "92dc9f361a9508a940c0d0708130f26fa044f6b3"; + sha256 = "sha256-NUuym7X6HslAVjdq7kPTidzuXlGth+YPY2LBuiokIkw="; +} diff --git a/manifests/forc-call-0.46.0.nix b/manifests/forc-call-0.46.0.nix new file mode 100644 index 00000000..4ce74182 --- /dev/null +++ b/manifests/forc-call-0.46.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.46.0"; + date = "2023-09-14"; + url = "https://github.com/fuellabs/sway"; + rev = "e75f14b03636bc96751a6760304a1a6d3eb5937d"; + sha256 = "sha256-mTqo8B7XUbherC9XBpDtlEtjewCxEzn6yC2kmiCFjVI="; +} diff --git a/manifests/forc-call-0.46.1.nix b/manifests/forc-call-0.46.1.nix new file mode 100644 index 00000000..4b157278 --- /dev/null +++ b/manifests/forc-call-0.46.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.46.1"; + date = "2023-09-28"; + url = "https://github.com/fuellabs/sway"; + rev = "512a3386f8961185188302f391ccc96553d23a7a"; + sha256 = "sha256-pqoyYzUCeyBL0dy0uCSqaMxcR+yqu7ZBUNIMuyQy0EY="; +} diff --git a/manifests/forc-call-0.47.0.nix b/manifests/forc-call-0.47.0.nix new file mode 100644 index 00000000..622ba9c3 --- /dev/null +++ b/manifests/forc-call-0.47.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.47.0"; + date = "2023-11-06"; + url = "https://github.com/fuellabs/sway"; + rev = "34265301c6037d51444899a99df1cfc563df6016"; + sha256 = "sha256-lsYDHU3In4tSL8nof1iA+dXemVMP3v56kDJJ+/Tj79A="; +} diff --git a/manifests/forc-call-0.48.0.nix b/manifests/forc-call-0.48.0.nix new file mode 100644 index 00000000..be8eb3c5 --- /dev/null +++ b/manifests/forc-call-0.48.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.48.0"; + date = "2023-12-06"; + url = "https://github.com/fuellabs/sway"; + rev = "e451140ce0a804e00de7936d2f569f1df3ec7b21"; + sha256 = "sha256-gSkH4a213nmk3Tt7UeTBpViLiQnJetVJYekMi/hJEWI="; +} diff --git a/manifests/forc-call-0.48.1.nix b/manifests/forc-call-0.48.1.nix new file mode 100644 index 00000000..285fe0e6 --- /dev/null +++ b/manifests/forc-call-0.48.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.48.1"; + date = "2023-12-06"; + url = "https://github.com/fuellabs/sway"; + rev = "6886ef050ce62afd3fe3186ed562fd33bd76bffa"; + sha256 = "sha256-qVwtmDqAut7C0Cx0fngAxXpDOIsMV20xx0Hl8cDw4Dg="; +} diff --git a/manifests/forc-call-0.49.0.nix b/manifests/forc-call-0.49.0.nix new file mode 100644 index 00000000..2b268afb --- /dev/null +++ b/manifests/forc-call-0.49.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.49.0"; + date = "2024-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "a17fbf3e7d8dc9845458260c343b4d8f006f3633"; + sha256 = "sha256-kNy0O+DO9Xnlv41+gTzELqTaKfaYTkghy+wsLFiHm0Q="; +} diff --git a/manifests/forc-call-0.49.1.nix b/manifests/forc-call-0.49.1.nix new file mode 100644 index 00000000..be375894 --- /dev/null +++ b/manifests/forc-call-0.49.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.49.1"; + date = "2024-01-19"; + url = "https://github.com/fuellabs/sway"; + rev = "2ac7030570f22510b0ac2a7b5ddf7baa20bdc0e1"; + sha256 = "sha256-XPcInwiDCSlwOt5VMYEH3g3hY/o9VvHVvL1q25x2Fkg="; +} diff --git a/manifests/forc-call-0.49.2.nix b/manifests/forc-call-0.49.2.nix new file mode 100644 index 00000000..3afe2dc9 --- /dev/null +++ b/manifests/forc-call-0.49.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.49.2"; + date = "2024-02-02"; + url = "https://github.com/fuellabs/sway"; + rev = "a70c746d27b3300beef896ccd1dcce1299836192"; + sha256 = "sha256-R07m9fTIbsJURYmH1HVFTK87rwp0JwYHnD+vrHH8LTw="; +} diff --git a/manifests/forc-call-0.49.3-patch.1.nix b/manifests/forc-call-0.49.3-patch.1.nix new file mode 100644 index 00000000..f3dfcd26 --- /dev/null +++ b/manifests/forc-call-0.49.3-patch.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.49.3-patch.1"; + date = "2024-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "0dc6570377ee9c4a6359ade597fa27351e02a728"; + sha256 = "sha256-wqNERqRNtL0OfQPoJqLDFBB8bMiyA1TIAkTpsdPqrAQ="; +} diff --git a/manifests/forc-call-0.49.3.nix b/manifests/forc-call-0.49.3.nix new file mode 100644 index 00000000..1e139d5b --- /dev/null +++ b/manifests/forc-call-0.49.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.49.3"; + date = "2024-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "0dc6570377ee9c4a6359ade597fa27351e02a728"; + sha256 = "sha256-wqNERqRNtL0OfQPoJqLDFBB8bMiyA1TIAkTpsdPqrAQ="; +} diff --git a/manifests/forc-call-0.5.0.nix b/manifests/forc-call-0.5.0.nix new file mode 100644 index 00000000..20365c53 --- /dev/null +++ b/manifests/forc-call-0.5.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.5.0"; + date = "2022-02-28"; + url = "https://github.com/fuellabs/sway"; + rev = "5c58c09ffba1719b187a3e1112639eec649eab5e"; + sha256 = "sha256-11OIZruYjYrylHv8zQOfLW9Fzs0p7aGOWQfq7UQN+5w="; +} diff --git a/manifests/forc-call-0.50.0.nix b/manifests/forc-call-0.50.0.nix new file mode 100644 index 00000000..050c3977 --- /dev/null +++ b/manifests/forc-call-0.50.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.50.0"; + date = "2024-02-07"; + url = "https://github.com/fuellabs/sway"; + rev = "11231184a073a3e9c179d1d2e68c90d205638d45"; + sha256 = "sha256-C3iFrYeTRgfodJjhHL5LlT++2vu0qW9aAQ40T0ixc9I="; +} diff --git a/manifests/forc-call-0.51.0.nix b/manifests/forc-call-0.51.0.nix new file mode 100644 index 00000000..738ecb54 --- /dev/null +++ b/manifests/forc-call-0.51.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.51.0"; + date = "2024-02-22"; + url = "https://github.com/fuellabs/sway"; + rev = "694457da6a507ecee047c1ef8a5865ef4cc07147"; + sha256 = "sha256-tk75ovG3ZxQCe3f13LNLxiBcQT9nf4ZuoIaip0RQgLQ="; +} diff --git a/manifests/forc-call-0.51.1.nix b/manifests/forc-call-0.51.1.nix new file mode 100644 index 00000000..317472a5 --- /dev/null +++ b/manifests/forc-call-0.51.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.51.1"; + date = "2024-02-23"; + url = "https://github.com/fuellabs/sway"; + rev = "d1e8f019c1da46273c3d3a72b385ce356ba2bc20"; + sha256 = "sha256-bFuBpcZE0CZGmm5wWURhTIZaVSHxL1e0Bs57UhGZWTI="; +} diff --git a/manifests/forc-call-0.52.0.nix b/manifests/forc-call-0.52.0.nix new file mode 100644 index 00000000..7aec447a --- /dev/null +++ b/manifests/forc-call-0.52.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.52.0"; + date = "2024-03-27"; + url = "https://github.com/fuellabs/sway"; + rev = "98d8f4cadbac34f232926b9a44b1170ec9da425d"; + sha256 = "sha256-toAWqJlcXknCUsU1+sQefUZKtFdwrBFmmGL8/5TE8NI="; +} diff --git a/manifests/forc-call-0.52.1.nix b/manifests/forc-call-0.52.1.nix new file mode 100644 index 00000000..b1fc6db5 --- /dev/null +++ b/manifests/forc-call-0.52.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.52.1"; + date = "2024-04-03"; + url = "https://github.com/fuellabs/sway"; + rev = "c1ea517f0522c780ca41120247cde2f450605a3c"; + sha256 = "sha256-PwKDmmPRGMlNqBMrMycdoFFCvBfD6Ly+mimg3AI4sAI="; +} diff --git a/manifests/forc-call-0.53.0.nix b/manifests/forc-call-0.53.0.nix new file mode 100644 index 00000000..d6947017 --- /dev/null +++ b/manifests/forc-call-0.53.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.53.0"; + date = "2024-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "b30f0e83d3f3d336007e3dfce45a48a87e731345"; + sha256 = "sha256-PYr3xSTIhBNC1RDbr2IVp6HjHydURhCS3cyBZB1jhuY="; +} diff --git a/manifests/forc-call-0.54.0.nix b/manifests/forc-call-0.54.0.nix new file mode 100644 index 00000000..60204528 --- /dev/null +++ b/manifests/forc-call-0.54.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.54.0"; + date = "2024-04-13"; + url = "https://github.com/fuellabs/sway"; + rev = "d90cbc8419e47283519e39046c3ea5616e64df84"; + sha256 = "sha256-bI5+vL8dVpAuRMcrznrYhnMUPpax6Q0iC/w7sps3ims="; +} diff --git a/manifests/forc-call-0.55.0.nix b/manifests/forc-call-0.55.0.nix new file mode 100644 index 00000000..c8cbc32e --- /dev/null +++ b/manifests/forc-call-0.55.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.55.0"; + date = "2024-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "60ea55e692f4f70730b500735e13c29df2ac727e"; + sha256 = "sha256-zfIGerybZgEYDqYIWD5r/iQLJFJTzmvoJKqUqmwwF6Q="; +} diff --git a/manifests/forc-call-0.56.0.nix b/manifests/forc-call-0.56.0.nix new file mode 100644 index 00000000..1600a672 --- /dev/null +++ b/manifests/forc-call-0.56.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.56.0"; + date = "2024-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "b495d0df6956524fd68dab7e062df04d2e581ac3"; + sha256 = "sha256-ag0rl2Q0a+J03SRhj4dh19pbvKVt8PJ83XKkRlDq+vo="; +} diff --git a/manifests/forc-call-0.56.1.nix b/manifests/forc-call-0.56.1.nix new file mode 100644 index 00000000..aae47de1 --- /dev/null +++ b/manifests/forc-call-0.56.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.56.1"; + date = "2024-05-08"; + url = "https://github.com/fuellabs/sway"; + rev = "4a63b41de136ab68bdf396c6720708fbf4dca83e"; + sha256 = "sha256-FW8P8+dujrVbUz1YyL+OSzOmpsDy1Ggaf3S6U4fHDtk="; +} diff --git a/manifests/forc-call-0.57.0.nix b/manifests/forc-call-0.57.0.nix new file mode 100644 index 00000000..4cb1f968 --- /dev/null +++ b/manifests/forc-call-0.57.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.57.0"; + date = "2024-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "8148817c02b0015ac3f299a8935f9a73d395a35e"; + sha256 = "sha256-jwTGhefYuJybXizPV/TLWQ60JNGSzyexzYTHk4lVDQU="; +} diff --git a/manifests/forc-call-0.58.0.nix b/manifests/forc-call-0.58.0.nix new file mode 100644 index 00000000..e48ef4bd --- /dev/null +++ b/manifests/forc-call-0.58.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.58.0"; + date = "2024-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "9579dd2f77c8597995d6d7d2995640c26cfb3fe4"; + sha256 = "sha256-3KqSYUixgLALy+eZWxOyjjwJR/mXpdUaygPGdEnSYlA="; +} diff --git a/manifests/forc-call-0.59.0.nix b/manifests/forc-call-0.59.0.nix new file mode 100644 index 00000000..fa9daa5f --- /dev/null +++ b/manifests/forc-call-0.59.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.59.0"; + date = "2024-05-17"; + url = "https://github.com/fuellabs/sway"; + rev = "d9985d8111f94235edba9a08fc71a9513ec2a95c"; + sha256 = "sha256-eXTLIonA9dyRCed1vUGsR8nrjq7Dm3T/eKdQ95+iqUs="; +} diff --git a/manifests/forc-call-0.6.0.nix b/manifests/forc-call-0.6.0.nix new file mode 100644 index 00000000..0e0d2fe5 --- /dev/null +++ b/manifests/forc-call-0.6.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.6.0"; + date = "2022-03-07"; + url = "https://github.com/fuellabs/sway"; + rev = "35e5a2f12e137953b82470e9637e4969ca064e4a"; + sha256 = "sha256-HKmNBduWtyIoaUwkj2Nu9GznUOoZFctcaRhFJOnTWLY="; +} diff --git a/manifests/forc-call-0.6.1.nix b/manifests/forc-call-0.6.1.nix new file mode 100644 index 00000000..6e6a6e55 --- /dev/null +++ b/manifests/forc-call-0.6.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.6.1"; + date = "2022-03-10"; + url = "https://github.com/fuellabs/sway"; + rev = "3268092ce50e5058b11a5ea2e7f35c6e19352d68"; + sha256 = "sha256-JOH4UosK8x7FmMqx2qkEqWnyO+z9XPl1C/BrnXWz4uw="; +} diff --git a/manifests/forc-call-0.60.0.nix b/manifests/forc-call-0.60.0.nix new file mode 100644 index 00000000..382d6654 --- /dev/null +++ b/manifests/forc-call-0.60.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.60.0"; + date = "2024-05-22"; + url = "https://github.com/fuellabs/sway"; + rev = "2f0392ee35a1e4dd80bd8034962d5b4083dfb8b6"; + sha256 = "sha256-2y1wRiRnY8Z5lgnIeu6BYQFVtJPHmDpaeHZVceeqjiA="; +} diff --git a/manifests/forc-call-0.61.0.nix b/manifests/forc-call-0.61.0.nix new file mode 100644 index 00000000..777d2c8b --- /dev/null +++ b/manifests/forc-call-0.61.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.61.0"; + date = "2024-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "4b4fb53eb2ef3390a0186a7048b060ff8e973a15"; + sha256 = "sha256-lM9Hzl70uO/QtOhDf6hN4ulOFSo9M5UaVTK22Y6rjJc="; +} diff --git a/manifests/forc-call-0.61.1.nix b/manifests/forc-call-0.61.1.nix new file mode 100644 index 00000000..08d368fd --- /dev/null +++ b/manifests/forc-call-0.61.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.61.1"; + date = "2024-07-02"; + url = "https://github.com/fuellabs/sway"; + rev = "d86bb863697550b76f9209894e7a4ed84d1a8f39"; + sha256 = "sha256-O/KRqfnTeS2Z01GvCiCzu/Iwg/ccC+Tp/MO9mjY9wf0="; +} diff --git a/manifests/forc-call-0.61.2.nix b/manifests/forc-call-0.61.2.nix new file mode 100644 index 00000000..bbabfd70 --- /dev/null +++ b/manifests/forc-call-0.61.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.61.2"; + date = "2024-07-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e1b1c2bee73e0ba825e07736cefa6c0abd079595"; + sha256 = "sha256-HOmwpzWp02DkXK+wiL2vCvuOKdFQNlPEvxMLGgfL11I="; +} diff --git a/manifests/forc-call-0.62.0.nix b/manifests/forc-call-0.62.0.nix new file mode 100644 index 00000000..bab07579 --- /dev/null +++ b/manifests/forc-call-0.62.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.62.0"; + date = "2024-07-18"; + url = "https://github.com/fuellabs/sway"; + rev = "efda0397c7bee77de73bd726ec0b732d57614973"; + sha256 = "sha256-24306qdH3UupJ8iGYcCAJRmWow7o/0e1ym7htSRPTjE="; +} diff --git a/manifests/forc-call-0.63.0.nix b/manifests/forc-call-0.63.0.nix new file mode 100644 index 00000000..e366d700 --- /dev/null +++ b/manifests/forc-call-0.63.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.63.0"; + date = "2024-08-19"; + url = "https://github.com/fuellabs/sway"; + rev = "da9b3230706bfbe6e4efec179b7ddc0322909b57"; + sha256 = "sha256-P5zhjVT5uwYcdprPN6gZ6UbiML0KLkw4CwNOkBlCIAE="; +} diff --git a/manifests/forc-call-0.63.1.nix b/manifests/forc-call-0.63.1.nix new file mode 100644 index 00000000..6da05bf6 --- /dev/null +++ b/manifests/forc-call-0.63.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.63.1"; + date = "2024-08-19"; + url = "https://github.com/fuellabs/sway"; + rev = "169f91ae0a6a698bd1cb459c4c203bab646a38ec"; + sha256 = "sha256-/9medkNesN+JuYEBasGDmhzZEMeCC4PVh2VKrTkb8NI="; +} diff --git a/manifests/forc-call-0.63.2.nix b/manifests/forc-call-0.63.2.nix new file mode 100644 index 00000000..76c799b4 --- /dev/null +++ b/manifests/forc-call-0.63.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.63.2"; + date = "2024-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "a9e83955bcb50aa1a8b95d04235066b3dd34c9c4"; + sha256 = "sha256-mCFw0F0HC4hrNUdnfMePO1DSWQE/CvKpXbdMwbq4RQQ="; +} diff --git a/manifests/forc-call-0.63.3.nix b/manifests/forc-call-0.63.3.nix new file mode 100644 index 00000000..a96e617d --- /dev/null +++ b/manifests/forc-call-0.63.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.63.3"; + date = "2024-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "f55c81cce61aac31913ac0e87306cbaed7da679a"; + sha256 = "sha256-SLdimVN0rjpKrWcAF3Kg3+DgyGT/zbkvePIdZrayH6Q="; +} diff --git a/manifests/forc-call-0.63.4.nix b/manifests/forc-call-0.63.4.nix new file mode 100644 index 00000000..2e5b9ad0 --- /dev/null +++ b/manifests/forc-call-0.63.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.63.4"; + date = "2024-09-05"; + url = "https://github.com/fuellabs/sway"; + rev = "2538442a67f893f2e878214ba37a11b51f4ed41e"; + sha256 = "sha256-TA4HerMYUBunE+wyPwYS3z9ziSThJdEAcX81Hx8VZSI="; +} diff --git a/manifests/forc-call-0.63.5.nix b/manifests/forc-call-0.63.5.nix new file mode 100644 index 00000000..51f4799f --- /dev/null +++ b/manifests/forc-call-0.63.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.63.5"; + date = "2024-09-06"; + url = "https://github.com/fuellabs/sway"; + rev = "31a1d6f98395f571cd3674b492d9bf4773c55f65"; + sha256 = "sha256-WZkfaz+4mU3TydLoBxoaKdzMCLPq8hISg0GCmFujuh4="; +} diff --git a/manifests/forc-call-0.63.6.nix b/manifests/forc-call-0.63.6.nix new file mode 100644 index 00000000..456b48a7 --- /dev/null +++ b/manifests/forc-call-0.63.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.63.6"; + date = "2024-09-18"; + url = "https://github.com/fuellabs/sway"; + rev = "cba9a005ef2a5b61e13eb02ba6e9e93ebd19a31a"; + sha256 = "sha256-9JH/vWzDBAMENzp7gFtSrP68AimsrmqfEhRaS6Aw6TM="; +} diff --git a/manifests/forc-call-0.64.0.nix b/manifests/forc-call-0.64.0.nix new file mode 100644 index 00000000..49060e65 --- /dev/null +++ b/manifests/forc-call-0.64.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.64.0"; + date = "2024-09-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2156bfbbee01ffb85bfca2aae8f185f8e7c715a4"; + sha256 = "sha256-HtzITm4CMH3td35GSGTCzcBzUSjzH/TAu7SwEzjbA3c="; +} diff --git a/manifests/forc-call-0.65.0.nix b/manifests/forc-call-0.65.0.nix new file mode 100644 index 00000000..56a40d4e --- /dev/null +++ b/manifests/forc-call-0.65.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.65.0"; + date = "2024-10-06"; + url = "https://github.com/fuellabs/sway"; + rev = "32d1cc91dc3cf8fbda12fe217e563b139feef8a7"; + sha256 = "sha256-Et4e/N8pKQdrMH9g5ZrAqsk++2n40mv/iTVx4p5PuUM="; +} diff --git a/manifests/forc-call-0.65.1.nix b/manifests/forc-call-0.65.1.nix new file mode 100644 index 00000000..8c4e3756 --- /dev/null +++ b/manifests/forc-call-0.65.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.65.1"; + date = "2024-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3a9c171cd43611d7ccad94ab66a5093c6634717b"; + sha256 = "sha256-6KoM3dIOS+6HJ8/mfQtzeX8efrRc3EjcXpU32RAmXiU="; +} diff --git a/manifests/forc-call-0.65.2.nix b/manifests/forc-call-0.65.2.nix new file mode 100644 index 00000000..98e7328e --- /dev/null +++ b/manifests/forc-call-0.65.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.65.2"; + date = "2024-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "66bb430395daf5b8f7205f7b9d8d008e2e812d54"; + sha256 = "sha256-J1/9pvWYBdZY4vPd9T0MGsg2g6OtZQG4KWk8QlKVtG8="; +} diff --git a/manifests/forc-call-0.66.0.nix b/manifests/forc-call-0.66.0.nix new file mode 100644 index 00000000..ddcd7c09 --- /dev/null +++ b/manifests/forc-call-0.66.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.0"; + date = "2024-10-15"; + url = "https://github.com/fuellabs/sway"; + rev = "b7e59f42aebed08c2e015cbd5d0776c8953fc57f"; + sha256 = "sha256-9iIlZi2eMIcyGylR9mkXANaBcfOJk308f3DArLwjDGM="; +} diff --git a/manifests/forc-call-0.66.1.nix b/manifests/forc-call-0.66.1.nix new file mode 100644 index 00000000..ccdb7346 --- /dev/null +++ b/manifests/forc-call-0.66.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.1"; + date = "2024-10-15"; + url = "https://github.com/fuellabs/sway"; + rev = "d5662c6bd0e5519446aa1b3ebb6af703025accec"; + sha256 = "sha256-Uf8qe94rUZhInAM/o0ue/W5vNW1bpubqYaWt6OVE2Aw="; +} diff --git a/manifests/forc-call-0.66.10.nix b/manifests/forc-call-0.66.10.nix new file mode 100644 index 00000000..9b98e576 --- /dev/null +++ b/manifests/forc-call-0.66.10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.10"; + date = "2025-03-11"; + url = "https://github.com/fuellabs/sway"; + rev = "6c00a44822ce2bec4d0754ef285566a8b8de72fb"; + sha256 = "sha256-cfFsArmLkpXUvwO3Jf3KkFYU7MmMyxEbVUEsUvzZtpA="; +} diff --git a/manifests/forc-call-0.66.2.nix b/manifests/forc-call-0.66.2.nix new file mode 100644 index 00000000..f8963c1b --- /dev/null +++ b/manifests/forc-call-0.66.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.2"; + date = "2024-10-16"; + url = "https://github.com/fuellabs/sway"; + rev = "31486c0b47669612acb7c64d66ecb50aea281282"; + sha256 = "sha256-k/53TarSPDFgljkqMb41ecV+aiqWDNwzZRBoPk4Itps="; +} diff --git a/manifests/forc-call-0.66.3.nix b/manifests/forc-call-0.66.3.nix new file mode 100644 index 00000000..e0966681 --- /dev/null +++ b/manifests/forc-call-0.66.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.3"; + date = "2024-10-30"; + url = "https://github.com/fuellabs/sway"; + rev = "5b7d720cf97e88eedc3c069b617ee7493bb16637"; + sha256 = "sha256-35bHX4r/WB3peaTJ5qK2TV3xRtxx5nBxUpDA+4oOlm4="; +} diff --git a/manifests/forc-call-0.66.4.nix b/manifests/forc-call-0.66.4.nix new file mode 100644 index 00000000..217cac22 --- /dev/null +++ b/manifests/forc-call-0.66.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.4"; + date = "2024-11-03"; + url = "https://github.com/fuellabs/sway"; + rev = "d7dd104dac4394aa7af56f05b720c975744db853"; + sha256 = "sha256-lpX7PSEE+glDj7284dRC7KtU4yIfjRnQZnySaTL+AQc="; +} diff --git a/manifests/forc-call-0.66.5.nix b/manifests/forc-call-0.66.5.nix new file mode 100644 index 00000000..3f84f974 --- /dev/null +++ b/manifests/forc-call-0.66.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.5"; + date = "2024-11-21"; + url = "https://github.com/fuellabs/sway"; + rev = "94a066652468b4afa3bd396dacef482ed590976b"; + sha256 = "sha256-+8fwP6jkBr5hyzDBZmcAXDq8ciu5PrsZDmDrA8gEzA0="; +} diff --git a/manifests/forc-call-0.66.6.nix b/manifests/forc-call-0.66.6.nix new file mode 100644 index 00000000..caee0ffa --- /dev/null +++ b/manifests/forc-call-0.66.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.6"; + date = "2025-01-23"; + url = "https://github.com/fuellabs/sway"; + rev = "986aee2c1e34c9cd958c81e7fd6b84638b26619b"; + sha256 = "sha256-O4pyhoFbxQ5O00OH8DZZTns3l4QGGFvr3gmqanToMD8="; +} diff --git a/manifests/forc-call-0.66.7.nix b/manifests/forc-call-0.66.7.nix new file mode 100644 index 00000000..4b2ee880 --- /dev/null +++ b/manifests/forc-call-0.66.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.7"; + date = "2025-02-05"; + url = "https://github.com/fuellabs/sway"; + rev = "5ed7cec6dbcd42f0c2f84df8511a4c0007b1902e"; + sha256 = "sha256-xuyG/6Kkr4w1lKTb4VkdC/zf5+RaC9HfgOYcsJmV2sc="; +} diff --git a/manifests/forc-call-0.66.8.nix b/manifests/forc-call-0.66.8.nix new file mode 100644 index 00000000..6d9cdb62 --- /dev/null +++ b/manifests/forc-call-0.66.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.8"; + date = "2025-03-05"; + url = "https://github.com/fuellabs/sway"; + rev = "ba46576c8601aadf23532de001375879f72f109b"; + sha256 = "sha256-95FNf10T4HmIV2Uj6hHps4SQduIKS7pMEeTgaVxSKQk="; +} diff --git a/manifests/forc-call-0.66.9.nix b/manifests/forc-call-0.66.9.nix new file mode 100644 index 00000000..ac9dd50f --- /dev/null +++ b/manifests/forc-call-0.66.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.66.9"; + date = "2025-03-11"; + url = "https://github.com/fuellabs/sway"; + rev = "ef377e78bf597ea3b324f6b021a105b232d1cd98"; + sha256 = "sha256-3yeZrK2+x+apfQ7GyebOT65TgPNqrwB7Wsr+dve6H0Q="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-01.nix b/manifests/forc-call-0.67.0-nightly-2025-04-01.nix new file mode 100644 index 00000000..b5919cf3 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-01"; + url = "https://github.com/fuellabs/sway"; + rev = "4eb0705fce706299c8d2efcf967edd58a9679fca"; + sha256 = "sha256-+w495nHeddHIj3hBbl34nE3nnFuEtUZEDefV3uqhyJQ="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-02.nix b/manifests/forc-call-0.67.0-nightly-2025-04-02.nix new file mode 100644 index 00000000..ce249bfb --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-02"; + url = "https://github.com/fuellabs/sway"; + rev = "34aa19ca86fe1b5b5eea87ef0d13708bd62796c2"; + sha256 = "sha256-W3cgYBZ16gmKjHniHklMcaHJqQ2VgK+89uUs217uBP8="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-03.nix b/manifests/forc-call-0.67.0-nightly-2025-04-03.nix new file mode 100644 index 00000000..2819092e --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-03"; + url = "https://github.com/fuellabs/sway"; + rev = "c1b63c87b21452d51d2b3244328d1ca9cb9dc3ef"; + sha256 = "sha256-wf0YdiVZM+lPcm3rN3TxIfz/uesiElQ0BAec2iktleE="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-04.nix b/manifests/forc-call-0.67.0-nightly-2025-04-04.nix new file mode 100644 index 00000000..9a449475 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-04"; + url = "https://github.com/fuellabs/sway"; + rev = "f11c5cd6cdff86b1bd106cd0fb86604a5d350720"; + sha256 = "sha256-Xjr1c1HAqytooSuDLvtVIoCo1xGB8sxl2O2MNCCcfUY="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-05.nix b/manifests/forc-call-0.67.0-nightly-2025-04-05.nix new file mode 100644 index 00000000..2ab18d53 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "8e162c9661fb566255cad6113a8cfcda8d7d7dca"; + sha256 = "sha256-NojfLZBf5CSPp7JQvgiG1GWfsF9DCYUt5uufOEQJzf8="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-08.nix b/manifests/forc-call-0.67.0-nightly-2025-04-08.nix new file mode 100644 index 00000000..5c186242 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-08"; + url = "https://github.com/fuellabs/sway"; + rev = "b59e1b627d0e8f1f904c28d681ccc66cf2830542"; + sha256 = "sha256-8aMBJhA+64WeAh+JEOkFvAG2F1xI6mBiC7D8ZDOkrrA="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-09.nix b/manifests/forc-call-0.67.0-nightly-2025-04-09.nix new file mode 100644 index 00000000..57f0df90 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-09"; + url = "https://github.com/fuellabs/sway"; + rev = "1c68f1c9e0cc7ec34a7195e11d92891290aaa8de"; + sha256 = "sha256-m9c+pCaoYwWLQi7cDuMLJm7xqI1PFs/bJ6X/8JN0Wbg="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-10.nix b/manifests/forc-call-0.67.0-nightly-2025-04-10.nix new file mode 100644 index 00000000..a2a63176 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-10"; + url = "https://github.com/fuellabs/sway"; + rev = "4d18d527495483af3c7d81543da347cfaa236147"; + sha256 = "sha256-sMQnl/QZVpkJnOsYDw322ERey+SNB9Fe4nev4Wk/Fro="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-11.nix b/manifests/forc-call-0.67.0-nightly-2025-04-11.nix new file mode 100644 index 00000000..15519608 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "ba3a0d56352ed7a95c7f901ab094954d003e7098"; + sha256 = "sha256-AyhTCZke7FbmJn5O53ZElsUXsQqvfLyf2J7uvluqoNo="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-14.nix b/manifests/forc-call-0.67.0-nightly-2025-04-14.nix new file mode 100644 index 00000000..583e0cd7 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-14"; + url = "https://github.com/fuellabs/sway"; + rev = "f4477cfb909e6d153133df352c147d4ee2ad6f3f"; + sha256 = "sha256-vIoJ8iW3NC278+VnhaSwb7GrcBGIdHmLsbWc6Y53RL0="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-15.nix b/manifests/forc-call-0.67.0-nightly-2025-04-15.nix new file mode 100644 index 00000000..73d57b8c --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-15"; + url = "https://github.com/fuellabs/sway"; + rev = "8c132f1b56afa491e044147c647bec1059c9ef81"; + sha256 = "sha256-nUp9I2y6b8BVKdlVUD0PWOKrMo0CJynSyyZxd3saav4="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-16.nix b/manifests/forc-call-0.67.0-nightly-2025-04-16.nix new file mode 100644 index 00000000..da6f1212 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-16.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-16"; + url = "https://github.com/fuellabs/sway"; + rev = "ddec15af093f6be7f0ef983dbd1040764c7e2bf8"; + sha256 = "sha256-JLTmnhL1eLG7iynyr0ulHqOllmJH9sdFqb/24KZJeIE="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-17.nix b/manifests/forc-call-0.67.0-nightly-2025-04-17.nix new file mode 100644 index 00000000..924d4273 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-17.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-17"; + url = "https://github.com/fuellabs/sway"; + rev = "8c2af95cc36dc034a4e21669ae6b8d5e49eadbca"; + sha256 = "sha256-P0LOySjweT23bu4xycNzUZv6D18IGglouTRERecGDEg="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-18.nix b/manifests/forc-call-0.67.0-nightly-2025-04-18.nix new file mode 100644 index 00000000..295a96fb --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "3afc5c18c87b82ac00ffd38a81de01d534af087b"; + sha256 = "sha256-+MWlXlp7dJXv8gY+qZ8wNvxa8U9u7J1Uhlxl654uw8A="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-20.nix b/manifests/forc-call-0.67.0-nightly-2025-04-20.nix new file mode 100644 index 00000000..3893ab57 --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-20"; + url = "https://github.com/fuellabs/sway"; + rev = "7cb78097d0bfbed1e3196639c2aff50a2c02666b"; + sha256 = "sha256-FznW8ID2ykfvqBkCRn96vC3hharM6SWoX6VUpv6OxIM="; +} diff --git a/manifests/forc-call-0.67.0-nightly-2025-04-22.nix b/manifests/forc-call-0.67.0-nightly-2025-04-22.nix new file mode 100644 index 00000000..d024f46e --- /dev/null +++ b/manifests/forc-call-0.67.0-nightly-2025-04-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-04-22"; + url = "https://github.com/fuellabs/sway"; + rev = "f607a674e303bc497887beab06f022127cfd67b7"; + sha256 = "sha256-ABQBvGxHTZX5KzSzg+VXUIVZShBRuSVTDq742WP/Q5I="; +} diff --git a/manifests/forc-call-0.67.0.nix b/manifests/forc-call-0.67.0.nix new file mode 100644 index 00000000..c3dda1f6 --- /dev/null +++ b/manifests/forc-call-0.67.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.0"; + date = "2025-03-13"; + url = "https://github.com/fuellabs/sway"; + rev = "d821dcb0c7edb1d6e2a772f5a1ccefe38902eaec"; + sha256 = "sha256-PgElgNdhBb/moj5GTMT+uwhWMDOdPzRe37y4V7MTIYc="; +} diff --git a/manifests/forc-call-0.67.1-nightly-2025-04-23.nix b/manifests/forc-call-0.67.1-nightly-2025-04-23.nix new file mode 100644 index 00000000..ccafdb15 --- /dev/null +++ b/manifests/forc-call-0.67.1-nightly-2025-04-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.1"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "6a896339a688eb4e0ddb2e966e8164f05742ca71"; + sha256 = "sha256-WUkC6JVB1NGHXXvmkHqkhzZ4K+ezhsvpVdqlvAQ3REM="; +} diff --git a/manifests/forc-call-0.67.1.nix b/manifests/forc-call-0.67.1.nix new file mode 100644 index 00000000..3b50455b --- /dev/null +++ b/manifests/forc-call-0.67.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.1"; + date = "2025-04-22"; + url = "https://github.com/fuellabs/sway"; + rev = "6a896339a688eb4e0ddb2e966e8164f05742ca71"; + sha256 = "sha256-WUkC6JVB1NGHXXvmkHqkhzZ4K+ezhsvpVdqlvAQ3REM="; +} diff --git a/manifests/forc-call-0.67.2.nix b/manifests/forc-call-0.67.2.nix new file mode 100644 index 00000000..18e8a234 --- /dev/null +++ b/manifests/forc-call-0.67.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.67.2"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "58a77073382e6992a40f21ed89dc4ea4d46010b1"; + sha256 = "sha256-BcTIuM6CazfMsjmubcuFsL0KC5JaVHyYn2UawLiyosc="; +} diff --git a/manifests/forc-call-0.68.0-nightly-2025-04-24.nix b/manifests/forc-call-0.68.0-nightly-2025-04-24.nix new file mode 100644 index 00000000..7eb328ca --- /dev/null +++ b/manifests/forc-call-0.68.0-nightly-2025-04-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.0"; + date = "2025-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "cbe8005a2388ec481d557aa4a58d7df96be9cad0"; + sha256 = "sha256-Oqp9k6fdhu0jIn/OTcZYwFRGOoL4neFmNkDkS48Nsc0="; +} diff --git a/manifests/forc-call-0.68.0.nix b/manifests/forc-call-0.68.0.nix new file mode 100644 index 00000000..fae7f35a --- /dev/null +++ b/manifests/forc-call-0.68.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.0"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "cbe8005a2388ec481d557aa4a58d7df96be9cad0"; + sha256 = "sha256-Oqp9k6fdhu0jIn/OTcZYwFRGOoL4neFmNkDkS48Nsc0="; +} diff --git a/manifests/forc-call-0.68.1-nightly-2025-04-25.nix b/manifests/forc-call-0.68.1-nightly-2025-04-25.nix new file mode 100644 index 00000000..ace1318c --- /dev/null +++ b/manifests/forc-call-0.68.1-nightly-2025-04-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.1"; + date = "2025-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "5f999595d377c2de6111836249614bae031d562e"; + sha256 = "sha256-Zfm1ImQ7w8igCFcXduW9rZ2etU/femHbxwPdVNd6/5s="; +} diff --git a/manifests/forc-call-0.68.1-nightly-2025-04-26.nix b/manifests/forc-call-0.68.1-nightly-2025-04-26.nix new file mode 100644 index 00000000..fc863b16 --- /dev/null +++ b/manifests/forc-call-0.68.1-nightly-2025-04-26.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.1"; + date = "2025-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "eb57cbf2849ed118f8f403954b545fd4d08a3643"; + sha256 = "sha256-w0r9OpTG1gSYk8xx53VLqA5fP6MzPJ6IWsHQdqwwhis="; +} diff --git a/manifests/forc-call-0.68.1-nightly-2025-04-29.nix b/manifests/forc-call-0.68.1-nightly-2025-04-29.nix new file mode 100644 index 00000000..643188c2 --- /dev/null +++ b/manifests/forc-call-0.68.1-nightly-2025-04-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.1"; + date = "2025-04-29"; + url = "https://github.com/fuellabs/sway"; + rev = "76268dcff70744288297a778aae46df77eb5a2a7"; + sha256 = "sha256-7EEPnkERP5rkcekMiBMP8kmh6oBIcCP+NiNn5aGWKCE="; +} diff --git a/manifests/forc-call-0.68.1-nightly-2025-04-30.nix b/manifests/forc-call-0.68.1-nightly-2025-04-30.nix new file mode 100644 index 00000000..6b0bf261 --- /dev/null +++ b/manifests/forc-call-0.68.1-nightly-2025-04-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.1"; + date = "2025-04-30"; + url = "https://github.com/fuellabs/sway"; + rev = "26e2ef875c10d7bab696c28f2127073422a7da15"; + sha256 = "sha256-qKjgPESiwmz9ZC6rOIvVAsiFkkrc6FBSMC3xwkFZghA="; +} diff --git a/manifests/forc-call-0.68.1-nightly-2025-05-01.nix b/manifests/forc-call-0.68.1-nightly-2025-05-01.nix new file mode 100644 index 00000000..bafc6253 --- /dev/null +++ b/manifests/forc-call-0.68.1-nightly-2025-05-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.1"; + date = "2025-05-01"; + url = "https://github.com/fuellabs/sway"; + rev = "42321ef0e0eef3e4de690759d3d197a21a8a7aa0"; + sha256 = "sha256-tOjGwpoTNuRQvApDngxGrDHDAdao8p8mQ3VVbBJ4Arg="; +} diff --git a/manifests/forc-call-0.68.1.nix b/manifests/forc-call-0.68.1.nix new file mode 100644 index 00000000..0c001aa8 --- /dev/null +++ b/manifests/forc-call-0.68.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.1"; + date = "2025-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "7e1bc152face6f1ae20b4274d98446100920e573"; + sha256 = "sha256-ME7GHU+Y9nrVJiI6OaHMyyPcPQYB57afi4/TAmx1Mcs="; +} diff --git a/manifests/forc-call-0.68.2-nightly-2025-05-02.nix b/manifests/forc-call-0.68.2-nightly-2025-05-02.nix new file mode 100644 index 00000000..82748df7 --- /dev/null +++ b/manifests/forc-call-0.68.2-nightly-2025-05-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.2"; + date = "2025-05-02"; + url = "https://github.com/fuellabs/sway"; + rev = "05480bb07ed7b62e4123a2696ba22bce57ffb049"; + sha256 = "sha256-12BK6qvONpLLM37jGY0lDfhHN+JT5TgjQfIueJrkY9E="; +} diff --git a/manifests/forc-call-0.68.2-nightly-2025-05-03.nix b/manifests/forc-call-0.68.2-nightly-2025-05-03.nix new file mode 100644 index 00000000..01cbcbb8 --- /dev/null +++ b/manifests/forc-call-0.68.2-nightly-2025-05-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.2"; + date = "2025-05-03"; + url = "https://github.com/fuellabs/sway"; + rev = "324f04fbab358a8e7eb729d03e0293605755ba5a"; + sha256 = "sha256-0gh3Yi3GUWf6QmXUtVPyIzJd8MjGBJtI5qLUu40txHM="; +} diff --git a/manifests/forc-call-0.68.2-nightly-2025-05-06.nix b/manifests/forc-call-0.68.2-nightly-2025-05-06.nix new file mode 100644 index 00000000..5473ccc2 --- /dev/null +++ b/manifests/forc-call-0.68.2-nightly-2025-05-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.2"; + date = "2025-05-06"; + url = "https://github.com/fuellabs/sway"; + rev = "804d6df0d9c950dbdfc887e2ca6dc39be3abc23a"; + sha256 = "sha256-ioawcNFkhCeo0rMk5xL0gABv7ipkeWha35fS9Z6vlqc="; +} diff --git a/manifests/forc-call-0.68.2-nightly-2025-05-07.nix b/manifests/forc-call-0.68.2-nightly-2025-05-07.nix new file mode 100644 index 00000000..90b2c920 --- /dev/null +++ b/manifests/forc-call-0.68.2-nightly-2025-05-07.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.2"; + date = "2025-05-07"; + url = "https://github.com/fuellabs/sway"; + rev = "f635cc22ead32fedc2e0bcb1ed43f51f1c63090f"; + sha256 = "sha256-D6iuParzkjmyMjrUHmemvdtQgbaSaWeFhxQgvwKNhDQ="; +} diff --git a/manifests/forc-call-0.68.2-nightly-2025-05-08.nix b/manifests/forc-call-0.68.2-nightly-2025-05-08.nix new file mode 100644 index 00000000..fd72fc50 --- /dev/null +++ b/manifests/forc-call-0.68.2-nightly-2025-05-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.2"; + date = "2025-05-08"; + url = "https://github.com/fuellabs/sway"; + rev = "8fb7a55f2145f2012d2d2df82b790e44a76106a1"; + sha256 = "sha256-Cq9aCSoap1QiqmIDLeqnAP6Uu1vx0A6tsDfD3jVz3W8="; +} diff --git a/manifests/forc-call-0.68.2-nightly-2025-05-09.nix b/manifests/forc-call-0.68.2-nightly-2025-05-09.nix new file mode 100644 index 00000000..09a1e502 --- /dev/null +++ b/manifests/forc-call-0.68.2-nightly-2025-05-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.2"; + date = "2025-05-09"; + url = "https://github.com/fuellabs/sway"; + rev = "bd3813606ad2c4685ae979c7d4443573642c929d"; + sha256 = "sha256-SQX3NYAWZDIGwYpzgx8i+4IWemHPn4Y+L1m4AY7el4Q="; +} diff --git a/manifests/forc-call-0.68.2-nightly-2025-05-10.nix b/manifests/forc-call-0.68.2-nightly-2025-05-10.nix new file mode 100644 index 00000000..e5944517 --- /dev/null +++ b/manifests/forc-call-0.68.2-nightly-2025-05-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.2"; + date = "2025-05-10"; + url = "https://github.com/fuellabs/sway"; + rev = "dffa29c5994988a2f7202793363c91a9e9476ee9"; + sha256 = "sha256-JXrQ9pL2fCkycFlYl77ZapokfPSLIAsQB3ouApH3jaw="; +} diff --git a/manifests/forc-call-0.68.2-nightly-2025-05-13.nix b/manifests/forc-call-0.68.2-nightly-2025-05-13.nix new file mode 100644 index 00000000..35af3497 --- /dev/null +++ b/manifests/forc-call-0.68.2-nightly-2025-05-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.2"; + date = "2025-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "7386b19846863ae6252800270587815520adc750"; + sha256 = "sha256-xT9wiL5n3PUSOWO0Bu56rhj09inWUNGJBKFuZ+B9y5I="; +} diff --git a/manifests/forc-call-0.68.2.nix b/manifests/forc-call-0.68.2.nix new file mode 100644 index 00000000..10ea9e59 --- /dev/null +++ b/manifests/forc-call-0.68.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.2"; + date = "2025-05-01"; + url = "https://github.com/fuellabs/sway"; + rev = "05480bb07ed7b62e4123a2696ba22bce57ffb049"; + sha256 = "sha256-12BK6qvONpLLM37jGY0lDfhHN+JT5TgjQfIueJrkY9E="; +} diff --git a/manifests/forc-call-0.68.3-nightly-2025-05-14.nix b/manifests/forc-call-0.68.3-nightly-2025-05-14.nix new file mode 100644 index 00000000..0b2fc221 --- /dev/null +++ b/manifests/forc-call-0.68.3-nightly-2025-05-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.3"; + date = "2025-05-14"; + url = "https://github.com/fuellabs/sway"; + rev = "be7a9698b1a751d91045d7492336e10912fdc376"; + sha256 = "sha256-g+EP0CEsXlV6JjehFcZiNDkdXgLEx2qQb9nVSWALJH8="; +} diff --git a/manifests/forc-call-0.68.3.nix b/manifests/forc-call-0.68.3.nix new file mode 100644 index 00000000..92e10728 --- /dev/null +++ b/manifests/forc-call-0.68.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.3"; + date = "2025-05-12"; + url = "https://github.com/fuellabs/sway"; + rev = "48d95fc22eaeb700cf6cc52f17f3087a7a17693a"; + sha256 = "sha256-wJfPIkI0QSyqiiA9Mp+Vq7yfPS+v6+6rAlRlxE10trY="; +} diff --git a/manifests/forc-call-0.68.4-nightly-2025-05-15.nix b/manifests/forc-call-0.68.4-nightly-2025-05-15.nix new file mode 100644 index 00000000..2cd0faf8 --- /dev/null +++ b/manifests/forc-call-0.68.4-nightly-2025-05-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.4"; + date = "2025-05-15"; + url = "https://github.com/fuellabs/sway"; + rev = "39251b665b110e6cbe85f312135eaeb97738583f"; + sha256 = "sha256-5pAFmTLLHjcINfJHClHQiOAFLAVAF37GilM7P5PSBTc="; +} diff --git a/manifests/forc-call-0.68.4-nightly-2025-05-18.nix b/manifests/forc-call-0.68.4-nightly-2025-05-18.nix new file mode 100644 index 00000000..940a5880 --- /dev/null +++ b/manifests/forc-call-0.68.4-nightly-2025-05-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.4"; + date = "2025-05-18"; + url = "https://github.com/fuellabs/sway"; + rev = "0e3d949dbf3c7346f990738dba99cdd64f079ffd"; + sha256 = "sha256-kcaCOTbiviYKwT7KWwJAENixqj5FPOukU6SwYfhAF+c="; +} diff --git a/manifests/forc-call-0.68.4-nightly-2025-05-20.nix b/manifests/forc-call-0.68.4-nightly-2025-05-20.nix new file mode 100644 index 00000000..5cd26b2b --- /dev/null +++ b/manifests/forc-call-0.68.4-nightly-2025-05-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.4"; + date = "2025-05-20"; + url = "https://github.com/fuellabs/sway"; + rev = "a4283762afbb19720c1976edc3952ea015506f1a"; + sha256 = "sha256-kerOcUFqrRGfWXL9tx2fQoMgvhiqTgJeEsBBOQbfTXM="; +} diff --git a/manifests/forc-call-0.68.4.nix b/manifests/forc-call-0.68.4.nix new file mode 100644 index 00000000..ca21b07d --- /dev/null +++ b/manifests/forc-call-0.68.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.4"; + date = "2025-05-14"; + url = "https://github.com/fuellabs/sway"; + rev = "1fb61fdc42054109c54a57544b9aeb88afd3cae8"; + sha256 = "sha256-gMxxjQGCNyB2H9kAvk8BTGpu6PNkUyfFRIjmxBK4Erg="; +} diff --git a/manifests/forc-call-0.68.5-nightly-2025-05-21.nix b/manifests/forc-call-0.68.5-nightly-2025-05-21.nix new file mode 100644 index 00000000..f8fddfdd --- /dev/null +++ b/manifests/forc-call-0.68.5-nightly-2025-05-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.5"; + date = "2025-05-21"; + url = "https://github.com/fuellabs/sway"; + rev = "5a95c65b61f098897d8e46f25f722f636fe127e0"; + sha256 = "sha256-NUItVZ/577fYObUjchf5/mKTppuiv9Xxax+omZ1rk7o="; +} diff --git a/manifests/forc-call-0.68.5-nightly-2025-05-23.nix b/manifests/forc-call-0.68.5-nightly-2025-05-23.nix new file mode 100644 index 00000000..a8980aca --- /dev/null +++ b/manifests/forc-call-0.68.5-nightly-2025-05-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.5"; + date = "2025-05-23"; + url = "https://github.com/fuellabs/sway"; + rev = "ee565f9145f072001b0cf10f58f838cb2566e934"; + sha256 = "sha256-juA6XgvN12UzmE8Vvfrf0icEeXBqDLEWA2cjRpqZrqU="; +} diff --git a/manifests/forc-call-0.68.5-nightly-2025-05-24.nix b/manifests/forc-call-0.68.5-nightly-2025-05-24.nix new file mode 100644 index 00000000..4ec749a5 --- /dev/null +++ b/manifests/forc-call-0.68.5-nightly-2025-05-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.5"; + date = "2025-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "c8625a029c588fcd8d4ffbfcee08326cfbf5b703"; + sha256 = "sha256-rvhRnyTjJ9bg+swsz0JkwfrPGgoPMvt5Q/xU4H9fuHQ="; +} diff --git a/manifests/forc-call-0.68.5-nightly-2025-05-27.nix b/manifests/forc-call-0.68.5-nightly-2025-05-27.nix new file mode 100644 index 00000000..8d5ce988 --- /dev/null +++ b/manifests/forc-call-0.68.5-nightly-2025-05-27.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.5"; + date = "2025-05-27"; + url = "https://github.com/fuellabs/sway"; + rev = "d972e423ac65442611cb6bec06693f0cd263b8a6"; + sha256 = "sha256-dE8cXbZzXemKYllz/Kzkss8jyor0qSBH7Hk3irEBc+M="; +} diff --git a/manifests/forc-call-0.68.5-nightly-2025-05-28.nix b/manifests/forc-call-0.68.5-nightly-2025-05-28.nix new file mode 100644 index 00000000..033b71fd --- /dev/null +++ b/manifests/forc-call-0.68.5-nightly-2025-05-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.5"; + date = "2025-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "f03d5ecdb0e63c66b5391fc907a5a272300a294a"; + sha256 = "sha256-D/xec8B/hC0136GPS+n24aLscvptlTfITYYhGOF9+4A="; +} diff --git a/manifests/forc-call-0.68.5.nix b/manifests/forc-call-0.68.5.nix new file mode 100644 index 00000000..c34838f9 --- /dev/null +++ b/manifests/forc-call-0.68.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.5"; + date = "2025-05-20"; + url = "https://github.com/fuellabs/sway"; + rev = "512bbfccdb15a0045576604ba97d7943c9b7520f"; + sha256 = "sha256-BpBo/uJd52ahBSzRYXpLk3cfNV4hjH3J/ZszRfWCNM0="; +} diff --git a/manifests/forc-call-0.68.6-nightly-2025-05-29.nix b/manifests/forc-call-0.68.6-nightly-2025-05-29.nix new file mode 100644 index 00000000..814fdb02 --- /dev/null +++ b/manifests/forc-call-0.68.6-nightly-2025-05-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.6"; + date = "2025-05-29"; + url = "https://github.com/fuellabs/sway"; + rev = "ac5280641599d4e81017e18d04e47380722074ed"; + sha256 = "sha256-ZUYUeHtlLguGmwkdKE/HFgg47zWKhudM8J2JqC44F+Q="; +} diff --git a/manifests/forc-call-0.68.6-nightly-2025-05-30.nix b/manifests/forc-call-0.68.6-nightly-2025-05-30.nix new file mode 100644 index 00000000..972012af --- /dev/null +++ b/manifests/forc-call-0.68.6-nightly-2025-05-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.6"; + date = "2025-05-30"; + url = "https://github.com/fuellabs/sway"; + rev = "2d0021c20bf348aaf5ae7ee41ac8dd610ba48cea"; + sha256 = "sha256-SfAzslGTI61qClSQzDlTI/ymcUJDUnVIR1AvkGnKuGo="; +} diff --git a/manifests/forc-call-0.68.6-nightly-2025-05-31.nix b/manifests/forc-call-0.68.6-nightly-2025-05-31.nix new file mode 100644 index 00000000..f0c60130 --- /dev/null +++ b/manifests/forc-call-0.68.6-nightly-2025-05-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.6"; + date = "2025-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "d6804729c962513736253f377f25a323492ded93"; + sha256 = "sha256-bvH+zuVN1AgA5b21X5gkNa5TWYRIWRcZrlJ8KKtIFVU="; +} diff --git a/manifests/forc-call-0.68.6-nightly-2025-06-03.nix b/manifests/forc-call-0.68.6-nightly-2025-06-03.nix new file mode 100644 index 00000000..7915045d --- /dev/null +++ b/manifests/forc-call-0.68.6-nightly-2025-06-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.6"; + date = "2025-06-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e1e51fd81fa16872888a6f5ec25b9125181ca89a"; + sha256 = "sha256-j7GLeNt0l5vexHU78M5n9mgDZyYH3CteqMh9yQZ2oDU="; +} diff --git a/manifests/forc-call-0.68.6-nightly-2025-06-04.nix b/manifests/forc-call-0.68.6-nightly-2025-06-04.nix new file mode 100644 index 00000000..b728569b --- /dev/null +++ b/manifests/forc-call-0.68.6-nightly-2025-06-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.6"; + date = "2025-06-04"; + url = "https://github.com/fuellabs/sway"; + rev = "0ac62945305079d94366062f1928293cefbe9dbf"; + sha256 = "sha256-xVyqCswbWWKSjVYWiyH19eFHcRZl/Z2PYxN1G6cZEIk="; +} diff --git a/manifests/forc-call-0.68.6.nix b/manifests/forc-call-0.68.6.nix new file mode 100644 index 00000000..df9bb061 --- /dev/null +++ b/manifests/forc-call-0.68.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.6"; + date = "2025-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "ac5280641599d4e81017e18d04e47380722074ed"; + sha256 = "sha256-ZUYUeHtlLguGmwkdKE/HFgg47zWKhudM8J2JqC44F+Q="; +} diff --git a/manifests/forc-call-0.68.7-nightly-2025-06-05.nix b/manifests/forc-call-0.68.7-nightly-2025-06-05.nix new file mode 100644 index 00000000..a5236ce3 --- /dev/null +++ b/manifests/forc-call-0.68.7-nightly-2025-06-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.7"; + date = "2025-06-05"; + url = "https://github.com/fuellabs/sway"; + rev = "58bf38ef9c737edbd677d2e0c5e5f32e8353ea00"; + sha256 = "sha256-1T2N3nbh16xaewOrHjAtnbWvMADJcsT6DToPOmGyh/M="; +} diff --git a/manifests/forc-call-0.68.7-nightly-2025-06-06.nix b/manifests/forc-call-0.68.7-nightly-2025-06-06.nix new file mode 100644 index 00000000..7e0faa5c --- /dev/null +++ b/manifests/forc-call-0.68.7-nightly-2025-06-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.7"; + date = "2025-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "fe8a3ef37a8a138e2c6aa583ae9ebb67c876a500"; + sha256 = "sha256-XFndqF78eXbmshZCZsbpKtjEwSEVVR+saxbXdJUTe4k="; +} diff --git a/manifests/forc-call-0.68.7-nightly-2025-06-11.nix b/manifests/forc-call-0.68.7-nightly-2025-06-11.nix new file mode 100644 index 00000000..96d040d1 --- /dev/null +++ b/manifests/forc-call-0.68.7-nightly-2025-06-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.7"; + date = "2025-06-11"; + url = "https://github.com/fuellabs/sway"; + rev = "14dc75275479666ddbfc3ade6a70333388a338a9"; + sha256 = "sha256-utIIwK4kzlqWDDYbV5Ord/Xdw1ptb32UJEA7f+w/3SY="; +} diff --git a/manifests/forc-call-0.68.7-nightly-2025-06-12.nix b/manifests/forc-call-0.68.7-nightly-2025-06-12.nix new file mode 100644 index 00000000..8ada5c32 --- /dev/null +++ b/manifests/forc-call-0.68.7-nightly-2025-06-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.7"; + date = "2025-06-12"; + url = "https://github.com/fuellabs/sway"; + rev = "0e24afdc4fc4e7d8b463a9f264cc68d0e1522655"; + sha256 = "sha256-5TnV7w7vg/WYp5WEh0LszwUR0UHH0oFHPXq+iKsGuGM="; +} diff --git a/manifests/forc-call-0.68.7-nightly-2025-06-14.nix b/manifests/forc-call-0.68.7-nightly-2025-06-14.nix new file mode 100644 index 00000000..45bda43e --- /dev/null +++ b/manifests/forc-call-0.68.7-nightly-2025-06-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.7"; + date = "2025-06-14"; + url = "https://github.com/fuellabs/sway"; + rev = "e0724422c6a867b15c1ff0e3f1bf85f445bc59e4"; + sha256 = "sha256-9GtBz+XdwsKpipMJh3wHIcky7N+5wXXeGpM51K++7bc="; +} diff --git a/manifests/forc-call-0.68.7-nightly-2025-06-18.nix b/manifests/forc-call-0.68.7-nightly-2025-06-18.nix new file mode 100644 index 00000000..14e37de7 --- /dev/null +++ b/manifests/forc-call-0.68.7-nightly-2025-06-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.7"; + date = "2025-06-18"; + url = "https://github.com/fuellabs/sway"; + rev = "cd89f62ece16b3d4ff37dbbd07d68ec056f18a6e"; + sha256 = "sha256-FRhXivoZUnUDbY0XRh7/XXyz0D2KHycu/vtZeGjctTY="; +} diff --git a/manifests/forc-call-0.68.7-nightly-2025-06-19.nix b/manifests/forc-call-0.68.7-nightly-2025-06-19.nix new file mode 100644 index 00000000..9e649689 --- /dev/null +++ b/manifests/forc-call-0.68.7-nightly-2025-06-19.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.7"; + date = "2025-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "b9ac2a9bdb2069b1c70637be4e2d4ae93361c73f"; + sha256 = "sha256-yxzmVuW3N7RV7L6qNDgA/2UMR3qjvwa3fCbRQLFXNnM="; +} diff --git a/manifests/forc-call-0.68.7.nix b/manifests/forc-call-0.68.7.nix new file mode 100644 index 00000000..44d6138f --- /dev/null +++ b/manifests/forc-call-0.68.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.7"; + date = "2025-06-04"; + url = "https://github.com/fuellabs/sway"; + rev = "58bf38ef9c737edbd677d2e0c5e5f32e8353ea00"; + sha256 = "sha256-1T2N3nbh16xaewOrHjAtnbWvMADJcsT6DToPOmGyh/M="; +} diff --git a/manifests/forc-call-0.68.8-nightly-2025-06-20.nix b/manifests/forc-call-0.68.8-nightly-2025-06-20.nix new file mode 100644 index 00000000..20b86448 --- /dev/null +++ b/manifests/forc-call-0.68.8-nightly-2025-06-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.8"; + date = "2025-06-20"; + url = "https://github.com/fuellabs/sway"; + rev = "b2028431508c0ff64b97de4998a15d214b56e0eb"; + sha256 = "sha256-nbUx/CRvR/k/o14fduZNy+aE8g7bfiNTq6GHD2T7pJI="; +} diff --git a/manifests/forc-call-0.68.8-nightly-2025-06-22.nix b/manifests/forc-call-0.68.8-nightly-2025-06-22.nix new file mode 100644 index 00000000..aacbfa0b --- /dev/null +++ b/manifests/forc-call-0.68.8-nightly-2025-06-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.8"; + date = "2025-06-22"; + url = "https://github.com/fuellabs/sway"; + rev = "83154ab6615d70479a11df50e7ea25733a8222cc"; + sha256 = "sha256-LiIlx3TwVKWegJNHnd942lPTtW9ImkPxBQULb3FCH2I="; +} diff --git a/manifests/forc-call-0.68.8.nix b/manifests/forc-call-0.68.8.nix new file mode 100644 index 00000000..5bafb736 --- /dev/null +++ b/manifests/forc-call-0.68.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.8"; + date = "2025-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "93ae73db745a60dfd782b340ca21804bdde54aeb"; + sha256 = "sha256-JwKPK9Dyjb/ZgVwz2+7hybLzU6PqY8KKBz8MMQeyJVQ="; +} diff --git a/manifests/forc-call-0.68.9.nix b/manifests/forc-call-0.68.9.nix new file mode 100644 index 00000000..848287a9 --- /dev/null +++ b/manifests/forc-call-0.68.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.68.9"; + date = "2025-06-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e054b396280942cb43a40bbc0b3a9b8cc30237ed"; + sha256 = "sha256-a+P/SqwMkQ0aDbaJH9VWNSxbvDBl4v6S5yb6HMuXABY="; +} diff --git a/manifests/forc-call-0.69.0-nightly-2025-06-24.nix b/manifests/forc-call-0.69.0-nightly-2025-06-24.nix new file mode 100644 index 00000000..a08bac83 --- /dev/null +++ b/manifests/forc-call-0.69.0-nightly-2025-06-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-06-24"; + url = "https://github.com/fuellabs/sway"; + rev = "5c22e3398756548f8b6dbbe32c6dbd7d6d77451c"; + sha256 = "sha256-0HIFZcZQvA/QxJNkBTQyMLSapTjFhUQAaUyRY3ZdA9M="; +} diff --git a/manifests/forc-call-0.69.0-nightly-2025-06-28.nix b/manifests/forc-call-0.69.0-nightly-2025-06-28.nix new file mode 100644 index 00000000..050708e3 --- /dev/null +++ b/manifests/forc-call-0.69.0-nightly-2025-06-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-06-28"; + url = "https://github.com/fuellabs/sway"; + rev = "c37dc92952247c1366d26702e6f72ee1dc77d046"; + sha256 = "sha256-ilGTFqb+5/rI8ya8E0K+BHR8Us3cVKuAOjOOdv9bXMU="; +} diff --git a/manifests/forc-call-0.69.0-nightly-2025-07-01.nix b/manifests/forc-call-0.69.0-nightly-2025-07-01.nix new file mode 100644 index 00000000..51dc97f2 --- /dev/null +++ b/manifests/forc-call-0.69.0-nightly-2025-07-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-07-01"; + url = "https://github.com/fuellabs/sway"; + rev = "0cae7a31951587aa2787e622b5fb25527ed035d8"; + sha256 = "sha256-vKMgZWr3/YNVWhprR+I5ZADfIjv8H270ED2EA2g5Ljs="; +} diff --git a/manifests/forc-call-0.69.0-nightly-2025-07-02.nix b/manifests/forc-call-0.69.0-nightly-2025-07-02.nix new file mode 100644 index 00000000..1324d934 --- /dev/null +++ b/manifests/forc-call-0.69.0-nightly-2025-07-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-07-02"; + url = "https://github.com/fuellabs/sway"; + rev = "73fb34320e61b0a01f5c8375dfaeb534871b0586"; + sha256 = "sha256-cCSC9W5FbByd263qSq/WUqHm26x50KS1tTbV2Y6htIg="; +} diff --git a/manifests/forc-call-0.69.0-nightly-2025-07-05.nix b/manifests/forc-call-0.69.0-nightly-2025-07-05.nix new file mode 100644 index 00000000..303c4d96 --- /dev/null +++ b/manifests/forc-call-0.69.0-nightly-2025-07-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-07-05"; + url = "https://github.com/fuellabs/sway"; + rev = "b54fce7727d1d07c6fa38d8aeaf8db821a78c0f3"; + sha256 = "sha256-4ZHUtGtlY+SI/MXU6MpwraFr4DzmVzW+/FFmqENS/qk="; +} diff --git a/manifests/forc-call-0.69.0-nightly-2025-07-08.nix b/manifests/forc-call-0.69.0-nightly-2025-07-08.nix new file mode 100644 index 00000000..de50fa2e --- /dev/null +++ b/manifests/forc-call-0.69.0-nightly-2025-07-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-07-08"; + url = "https://github.com/fuellabs/sway"; + rev = "5ca3dcab93f0064f47438927fad8899ade888e9b"; + sha256 = "sha256-EJ5+cQolHJeY5GXRFggq9i4ocHfEdYwJLCfRmDVTDcU="; +} diff --git a/manifests/forc-call-0.69.0-nightly-2025-07-10.nix b/manifests/forc-call-0.69.0-nightly-2025-07-10.nix new file mode 100644 index 00000000..1c101a93 --- /dev/null +++ b/manifests/forc-call-0.69.0-nightly-2025-07-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-07-10"; + url = "https://github.com/fuellabs/sway"; + rev = "403a7e5780f5328c83bcf349a3f67189be158eea"; + sha256 = "sha256-dCOgyZ0fvH1q95Ibtm5MBn9MDAGfycbPpovGiYsYPo0="; +} diff --git a/manifests/forc-call-0.69.0-nightly-2025-07-12.nix b/manifests/forc-call-0.69.0-nightly-2025-07-12.nix new file mode 100644 index 00000000..5755848a --- /dev/null +++ b/manifests/forc-call-0.69.0-nightly-2025-07-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-07-12"; + url = "https://github.com/fuellabs/sway"; + rev = "8b7524666b3349d5c51f2b9d2910f1ee9e20c3ff"; + sha256 = "sha256-n0VxAxi4ZcApi8Fxs+jd6t/Z4S1WWiSgoSxo0t4HO/0="; +} diff --git a/manifests/forc-call-0.69.0-nightly-2025-07-13.nix b/manifests/forc-call-0.69.0-nightly-2025-07-13.nix new file mode 100644 index 00000000..05048570 --- /dev/null +++ b/manifests/forc-call-0.69.0-nightly-2025-07-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-07-13"; + url = "https://github.com/fuellabs/sway"; + rev = "74092cbbcdd11d39c184097e10a34d2104c55209"; + sha256 = "sha256-WItCuXu1VzuDvH5PAkNoP96O+5Iv+ANZ/tY/Mu3bU2I="; +} diff --git a/manifests/forc-call-0.69.0.nix b/manifests/forc-call-0.69.0.nix new file mode 100644 index 00000000..4c8669b8 --- /dev/null +++ b/manifests/forc-call-0.69.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.0"; + date = "2025-06-23"; + url = "https://github.com/fuellabs/sway"; + rev = "5c22e3398756548f8b6dbbe32c6dbd7d6d77451c"; + sha256 = "sha256-0HIFZcZQvA/QxJNkBTQyMLSapTjFhUQAaUyRY3ZdA9M="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-07-18.nix b/manifests/forc-call-0.69.1-nightly-2025-07-18.nix new file mode 100644 index 00000000..0c80b3a4 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-07-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-18"; + url = "https://github.com/fuellabs/sway"; + rev = "b68a3861db866f33078b3c966eaf5b3379e716cf"; + sha256 = "sha256-k4WlC6P7kXANf2kwJg8j9W1tMpW8ds74pVB2waDELzY="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-07-19.nix b/manifests/forc-call-0.69.1-nightly-2025-07-19.nix new file mode 100644 index 00000000..e7636924 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-07-19.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-19"; + url = "https://github.com/fuellabs/sway"; + rev = "03398522890e7b99511ec45343613de20b6edcd6"; + sha256 = "sha256-eV3/Qeg+8YReAM9/hCd7kcZd9Yve0dXgaNBa3Vnf8ao="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-07-21.nix b/manifests/forc-call-0.69.1-nightly-2025-07-21.nix new file mode 100644 index 00000000..d73fb9a2 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-07-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-21"; + url = "https://github.com/fuellabs/sway"; + rev = "926cb4d098fd57da46e28ddd043af2d55b094ce1"; + sha256 = "sha256-j03PiBlN+LY3a9JwaxBN2LgFVYNzb4c9omhhNclXDKo="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-07-22.nix b/manifests/forc-call-0.69.1-nightly-2025-07-22.nix new file mode 100644 index 00000000..0aa1e5e2 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-07-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-22"; + url = "https://github.com/fuellabs/sway"; + rev = "d8536d384f63c5ed4a4800b995e0b278be23c232"; + sha256 = "sha256-7KNnQuOE52zoQmJ33nnjloRXWh24r0Fg/uWHAozOaek="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-07-23.nix b/manifests/forc-call-0.69.1-nightly-2025-07-23.nix new file mode 100644 index 00000000..f53577a3 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-07-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-23"; + url = "https://github.com/fuellabs/sway"; + rev = "a5e61488daff5db9a262173dcd0d4a78cb9e90cd"; + sha256 = "sha256-1wiGWfXw3lCWH4MijZ7xk6oQ9OnmKSd6LX3Say7T4QE="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-07-24.nix b/manifests/forc-call-0.69.1-nightly-2025-07-24.nix new file mode 100644 index 00000000..a6633a34 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-07-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-24"; + url = "https://github.com/fuellabs/sway"; + rev = "22d858682b2ff06f01a3d74b1646508a00d623ac"; + sha256 = "sha256-QwBRrzuNNnfT/xBsq+bF4IK6Y67WqBUQVWxRYhuEdjc="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-07-25.nix b/manifests/forc-call-0.69.1-nightly-2025-07-25.nix new file mode 100644 index 00000000..babd68d5 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-07-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-25"; + url = "https://github.com/fuellabs/sway"; + rev = "4c9c4c29bfcda957cf58e1f6c6ed711c09334117"; + sha256 = "sha256-HEIgNOxMuTTCHcZrNH1SlBO4bNFcG6rVkKvPGXOTk/I="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-07-30.nix b/manifests/forc-call-0.69.1-nightly-2025-07-30.nix new file mode 100644 index 00000000..873309b6 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-07-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-30"; + url = "https://github.com/fuellabs/sway"; + rev = "32dcbaa2431bbdaa0f40e4fc8c61d51c7e765967"; + sha256 = "sha256-b12wpFXPX1wDAlpJbQpQjpycanhR0gt5mNR4nePL0ek="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-07-31.nix b/manifests/forc-call-0.69.1-nightly-2025-07-31.nix new file mode 100644 index 00000000..230fc4fe --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-07-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-31"; + url = "https://github.com/fuellabs/sway"; + rev = "c7ff31207a535386431afcd468c70592ec5ffa31"; + sha256 = "sha256-Pj7+7QlL/ftL3ZK7KrmA1XZb/ws1LAUhr5A+e2DdBQo="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-01.nix b/manifests/forc-call-0.69.1-nightly-2025-08-01.nix new file mode 100644 index 00000000..b969607e --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-01"; + url = "https://github.com/fuellabs/sway"; + rev = "8b29cc39c52cf7a3fd7857290f9741334923d362"; + sha256 = "sha256-jtCaouazr3gN9MKoqkH3okGnqo3AXzhue4Lwdt3rK8Q="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-02.nix b/manifests/forc-call-0.69.1-nightly-2025-08-02.nix new file mode 100644 index 00000000..402bd243 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-02"; + url = "https://github.com/fuellabs/sway"; + rev = "05e667dfc973f8aa26ab2081dc53ea804b7bf94e"; + sha256 = "sha256-EpdlAE9+PuaVZu29+oXFo2ir29m+62GCImj1DLzIr1E="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-06.nix b/manifests/forc-call-0.69.1-nightly-2025-08-06.nix new file mode 100644 index 00000000..7c758d5c --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-06"; + url = "https://github.com/fuellabs/sway"; + rev = "56e0c10a3a37055741b16d38710b4c0ab78277af"; + sha256 = "sha256-yI6H6cLYHem79lHcyVFEh0ZTPPC7Es5VFrCNK5sU98A="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-08.nix b/manifests/forc-call-0.69.1-nightly-2025-08-08.nix new file mode 100644 index 00000000..9a19a5bd --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-08"; + url = "https://github.com/fuellabs/sway"; + rev = "fb6ea52a964dc3b6b8deaafb93ae2779d2822f10"; + sha256 = "sha256-VmIWWWoJPkMmLRLHvGt/UP2+EGdQt0d8vU+zDPk7mZ4="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-09.nix b/manifests/forc-call-0.69.1-nightly-2025-08-09.nix new file mode 100644 index 00000000..132c46c5 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-09"; + url = "https://github.com/fuellabs/sway"; + rev = "95130c4172e5e4986e3eefe8f597f1d1faa025ce"; + sha256 = "sha256-NyLtu7U9wLLg2uTPVmxyLMNjhQjqnTemDtbtTeEGhS0="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-14.nix b/manifests/forc-call-0.69.1-nightly-2025-08-14.nix new file mode 100644 index 00000000..a6530d7f --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-14"; + url = "https://github.com/fuellabs/sway"; + rev = "5d5ca3494954451e2b8799d7165d34516efe8d52"; + sha256 = "sha256-H63IGp3TEjidtyDq1bi64486mfvT8c1TPSIpmexWYqs="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-15.nix b/manifests/forc-call-0.69.1-nightly-2025-08-15.nix new file mode 100644 index 00000000..e3a24a1a --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-15"; + url = "https://github.com/fuellabs/sway"; + rev = "fe9bbe39b9f06d455c8d5be403dd120a42d6a54c"; + sha256 = "sha256-xMinksVvWu2HgCCMoZJIBAS3yyuMxsgSVaFxJytLqtQ="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-20.nix b/manifests/forc-call-0.69.1-nightly-2025-08-20.nix new file mode 100644 index 00000000..b4021683 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-20"; + url = "https://github.com/fuellabs/sway"; + rev = "f036d4c45f730676608bd0bbe0f0e68d11af6fca"; + sha256 = "sha256-1wSq/TNkumriBbfawPUAB/30utkpox45uI/Pw3GyhvM="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-21.nix b/manifests/forc-call-0.69.1-nightly-2025-08-21.nix new file mode 100644 index 00000000..ae33f7d7 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-21"; + url = "https://github.com/fuellabs/sway"; + rev = "f59835a78a87502d1aef8bb8be61c7a6517c0210"; + sha256 = "sha256-2R+qajT3WPKinp1liG5/Ef220Q+PH4+Ypml6TsVp44Q="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-23.nix b/manifests/forc-call-0.69.1-nightly-2025-08-23.nix new file mode 100644 index 00000000..e71fc506 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-23"; + url = "https://github.com/fuellabs/sway"; + rev = "b2c965e6970e1c8079ef77f359b14957a39e5546"; + sha256 = "sha256-vDtXSpLsam7EOPHND9xa+QVCN0CcelXtVsx98DnDCDg="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-24.nix b/manifests/forc-call-0.69.1-nightly-2025-08-24.nix new file mode 100644 index 00000000..536f2824 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-24"; + url = "https://github.com/fuellabs/sway"; + rev = "be5871da225d79dc2f3325788033ddb49e42928f"; + sha256 = "sha256-V1pUYHa1dVmGURn96EcU3J9I8lPHL5TQkZhWNsxazhU="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-25.nix b/manifests/forc-call-0.69.1-nightly-2025-08-25.nix new file mode 100644 index 00000000..1c738b48 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-25"; + url = "https://github.com/fuellabs/sway"; + rev = "a347631478939613690c303d2f636506e4c44b0f"; + sha256 = "sha256-CVIBdk6+o6CY95cnVApwJ3zGJxx7mWpEzZFNoUU5vL8="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-27.nix b/manifests/forc-call-0.69.1-nightly-2025-08-27.nix new file mode 100644 index 00000000..efcb3958 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-27.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-27"; + url = "https://github.com/fuellabs/sway"; + rev = "8be2dae76b6c6c7fa1dc6ba7cc58e55c00abb573"; + sha256 = "sha256-SyHl1eMG9fcxs7xfLwLrk4MbyuROeyr12Xh2rMfhr2E="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-28.nix b/manifests/forc-call-0.69.1-nightly-2025-08-28.nix new file mode 100644 index 00000000..2fbedcb8 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "8cb7c57344d230258222110e22fef54e8bdef165"; + sha256 = "sha256-VA51UnSCNxSJAvcXJPV5hMLr7jPi0d9hHz/rL/YgZTc="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-29.nix b/manifests/forc-call-0.69.1-nightly-2025-08-29.nix new file mode 100644 index 00000000..84ef5dab --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-29"; + url = "https://github.com/fuellabs/sway"; + rev = "d49cf8e92c9b5512c471571d135dc546fc456ac9"; + sha256 = "sha256-xOEmt3raPrVXhQvMqbqmmudbSxLTC0r7ne5GMjQJkJE="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-30.nix b/manifests/forc-call-0.69.1-nightly-2025-08-30.nix new file mode 100644 index 00000000..63654abf --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-30"; + url = "https://github.com/fuellabs/sway"; + rev = "84e575ab5266b1103457bbca61b047a967c3d116"; + sha256 = "sha256-isNB7/VsDsBCXnyhWEgyOuHHMydLd3fjUD0sqV+7xuE="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-08-31.nix b/manifests/forc-call-0.69.1-nightly-2025-08-31.nix new file mode 100644 index 00000000..eb490b66 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-08-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "0aef56aa59abf7669d1b159a645b848b2721ee11"; + sha256 = "sha256-39FRxaXFWIsvVjwid77rjIOAMXA16WDuWnc2gT6kYZU="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-03.nix b/manifests/forc-call-0.69.1-nightly-2025-09-03.nix new file mode 100644 index 00000000..5897141c --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-03"; + url = "https://github.com/fuellabs/sway"; + rev = "1e04b80c3a25e475023b978a5987686de962eb49"; + sha256 = "sha256-AMmx1suCuWuywmHiZahhBQM9vqnCvsUSOTIhgRPVrF8="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-04.nix b/manifests/forc-call-0.69.1-nightly-2025-09-04.nix new file mode 100644 index 00000000..34397757 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-04"; + url = "https://github.com/fuellabs/sway"; + rev = "c58ddbc57f716dcbbc9debed941b0c378ee800bc"; + sha256 = "sha256-TiufOKOHYgVJMsk9yYJSDNI5UH4pK2qSZQQYCWlL9tU="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-05.nix b/manifests/forc-call-0.69.1-nightly-2025-09-05.nix new file mode 100644 index 00000000..a927608d --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-05"; + url = "https://github.com/fuellabs/sway"; + rev = "1f9880f60d288f36b623309b601da404792acbda"; + sha256 = "sha256-oZfoMFSTBuQji+d4OKqo07/f2cGKsJ7ZqP7y9cTwhQc="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-07.nix b/manifests/forc-call-0.69.1-nightly-2025-09-07.nix new file mode 100644 index 00000000..9a4c32fc --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-07.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-07"; + url = "https://github.com/fuellabs/sway"; + rev = "c2696d6c7b359ae014edf96b29e623f4ddcac0ee"; + sha256 = "sha256-MCV+t/k/JHE4vvOqhRzpiMap/pdfP57tZw7WzA8J+l4="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-09.nix b/manifests/forc-call-0.69.1-nightly-2025-09-09.nix new file mode 100644 index 00000000..fdb5ee44 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-09"; + url = "https://github.com/fuellabs/sway"; + rev = "6981d3dc884e8b2033509d40e4e9c9b888b82936"; + sha256 = "sha256-xaA/J8nptOBPkVtw8Jqk24z0KMA1/1TA+b7b9p3ZNco="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-11.nix b/manifests/forc-call-0.69.1-nightly-2025-09-11.nix new file mode 100644 index 00000000..2b907cf1 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-11"; + url = "https://github.com/fuellabs/sway"; + rev = "b552ba17c8a1b0f9d46fdaeb808879060f8ba1f4"; + sha256 = "sha256-c+gs8HsPM2LGcu+I0PD7Sqys/9bbaGDNP59Kqx32PLI="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-12.nix b/manifests/forc-call-0.69.1-nightly-2025-09-12.nix new file mode 100644 index 00000000..0ec77c4a --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-12"; + url = "https://github.com/fuellabs/sway"; + rev = "608fc526adea252edf37c8512e3151f555b69aa7"; + sha256 = "sha256-mNWc0PgsO5V0kyi5hPCNzZhmhYAsdrEVMJbZZ1y+cZs="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-13.nix b/manifests/forc-call-0.69.1-nightly-2025-09-13.nix new file mode 100644 index 00000000..f2d08676 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-13"; + url = "https://github.com/fuellabs/sway"; + rev = "4f1af4316a019aca20fdbe4fca862b2006457cb3"; + sha256 = "sha256-FTVhC6xAxhaWh5qtuzHG6P5U6Oy8HyEjQZroL8gk6vk="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-17.nix b/manifests/forc-call-0.69.1-nightly-2025-09-17.nix new file mode 100644 index 00000000..69a3e5d5 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-17.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-17"; + url = "https://github.com/fuellabs/sway"; + rev = "6553dce5a2765362cdfe772d989240198c87f5dd"; + sha256 = "sha256-8zEV6A6+hlvzqVU8AqLr7G3R2rEs1vw9gkpcj1WfhNw="; +} diff --git a/manifests/forc-call-0.69.1-nightly-2025-09-22.nix b/manifests/forc-call-0.69.1-nightly-2025-09-22.nix new file mode 100644 index 00000000..50587866 --- /dev/null +++ b/manifests/forc-call-0.69.1-nightly-2025-09-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-09-22"; + url = "https://github.com/fuellabs/sway"; + rev = "e4672e3e1794e31eb53cf83c1821890b8c876a16"; + sha256 = "sha256-zevCtBXQmNriCMBNmpagzVnxD+9S7aQA4Qa+sHSLnw4="; +} diff --git a/manifests/forc-call-0.69.1.nix b/manifests/forc-call-0.69.1.nix new file mode 100644 index 00000000..5a7f1f2d --- /dev/null +++ b/manifests/forc-call-0.69.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.1"; + date = "2025-07-17"; + url = "https://github.com/fuellabs/sway"; + rev = "b68a3861db866f33078b3c966eaf5b3379e716cf"; + sha256 = "sha256-k4WlC6P7kXANf2kwJg8j9W1tMpW8ds74pVB2waDELzY="; +} diff --git a/manifests/forc-call-0.69.2-nightly-2025-09-23.nix b/manifests/forc-call-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..151a96cc --- /dev/null +++ b/manifests/forc-call-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-call-0.69.2.nix b/manifests/forc-call-0.69.2.nix new file mode 100644 index 00000000..151a96cc --- /dev/null +++ b/manifests/forc-call-0.69.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-call-0.7.0.nix b/manifests/forc-call-0.7.0.nix new file mode 100644 index 00000000..8dd2d6e0 --- /dev/null +++ b/manifests/forc-call-0.7.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.7.0"; + date = "2022-03-22"; + url = "https://github.com/fuellabs/sway"; + rev = "7dd186041fbd2d4040b9a374fedc9a0cbed9eecb"; + sha256 = "sha256-B37FgsnDop9Vyn5t7aSn2RceGG3pdLxrHUJHZ2s53d8="; +} diff --git a/manifests/forc-call-0.8.0.nix b/manifests/forc-call-0.8.0.nix new file mode 100644 index 00000000..6b00458b --- /dev/null +++ b/manifests/forc-call-0.8.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.8.0"; + date = "2022-03-25"; + url = "https://github.com/fuellabs/sway"; + rev = "04d26d6924788875fb01fa4fe58fe969849dcfc5"; + sha256 = "sha256-MTQlnuP9WVHL/rNHsMdmYqvIgHL5IJmIjUF9WqM55M0="; +} diff --git a/manifests/forc-call-0.9.0.nix b/manifests/forc-call-0.9.0.nix new file mode 100644 index 00000000..2d3c2196 --- /dev/null +++ b/manifests/forc-call-0.9.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.9.0"; + date = "2022-03-28"; + url = "https://github.com/fuellabs/sway"; + rev = "fdebe28e2803ef32238e6b39693748b6bdf6f34e"; + sha256 = "sha256-dzEkvJ+nP6+Xzp+nVz+VKy0RmfN/UkX/JlP/0cXqaY0="; +} diff --git a/manifests/forc-call-0.9.1.nix b/manifests/forc-call-0.9.1.nix new file mode 100644 index 00000000..7bc01f23 --- /dev/null +++ b/manifests/forc-call-0.9.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.9.1"; + date = "2022-03-29"; + url = "https://github.com/fuellabs/sway"; + rev = "72aa51d6da3d49b1bad2e6d6fffe6d4b3e331380"; + sha256 = "sha256-Mu3niggbgovHWhm6GtU/hhWqANm5YWFvdsrDExUPKYc="; +} diff --git a/manifests/forc-call-0.9.2.nix b/manifests/forc-call-0.9.2.nix new file mode 100644 index 00000000..a90a1616 --- /dev/null +++ b/manifests/forc-call-0.9.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-call"; + version = "0.9.2"; + date = "2022-03-30"; + url = "https://github.com/fuellabs/sway"; + rev = "4905aa0b2b6cb7178d6229e7bed94c241a418c26"; + sha256 = "sha256-C+1vF48WryCdT2X09E8RwcY8LRHxGX3ncRkc2MtNnY4="; +} diff --git a/manifests/forc-client-0.69.2-nightly-2025-09-23.nix b/manifests/forc-client-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..e8f81888 --- /dev/null +++ b/manifests/forc-client-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-client"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-crypto-0.69.2-nightly-2025-09-23.nix b/manifests/forc-crypto-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..07218b4c --- /dev/null +++ b/manifests/forc-crypto-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-crypto"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-debug-0.69.2-nightly-2025-09-23.nix b/manifests/forc-debug-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..b4ccdf81 --- /dev/null +++ b/manifests/forc-debug-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-debug"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-doc-0.69.2-nightly-2025-09-23.nix b/manifests/forc-doc-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..8d77cdea --- /dev/null +++ b/manifests/forc-doc-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-doc"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-fmt-0.69.2-nightly-2025-09-23.nix b/manifests/forc-fmt-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..4aacda3d --- /dev/null +++ b/manifests/forc-fmt-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-fmt"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-lsp-0.69.2-nightly-2025-09-23.nix b/manifests/forc-lsp-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..f21431ad --- /dev/null +++ b/manifests/forc-lsp-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-lsp"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-migrate-0.0.1.nix b/manifests/forc-migrate-0.0.1.nix new file mode 100644 index 00000000..6f494696 --- /dev/null +++ b/manifests/forc-migrate-0.0.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.0.1"; + date = "2021-09-27"; + url = "https://github.com/fuellabs/sway"; + rev = "c9781a1acca6eea8a1f2f30607466ae40d76de65"; + sha256 = "sha256-g6pSdahytTJQJ1rgLCku4289C2dnCLqzvSH8Mq8y26I="; +} diff --git a/manifests/forc-migrate-0.0.2.nix b/manifests/forc-migrate-0.0.2.nix new file mode 100644 index 00000000..dae0acad --- /dev/null +++ b/manifests/forc-migrate-0.0.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.0.2"; + date = "2021-10-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e0c043bc9463eb266aaf111ff86b8c911602e053"; + sha256 = "sha256-LwGYEtKpb5eEts1K0TkRPwlWPu7EQLJbtaK8dAFexTk="; +} diff --git a/manifests/forc-migrate-0.0.3.nix b/manifests/forc-migrate-0.0.3.nix new file mode 100644 index 00000000..e4575384 --- /dev/null +++ b/manifests/forc-migrate-0.0.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.0.3"; + date = "2021-10-16"; + url = "https://github.com/fuellabs/sway"; + rev = "ce7692d119fa9010dd0937b5f10cf5728fe72393"; + sha256 = "sha256-ygyqjapnGH+tznuYu5x9vnvhfHaoQ82vlyi90s/ZTCU="; +} diff --git a/manifests/forc-migrate-0.0.4.nix b/manifests/forc-migrate-0.0.4.nix new file mode 100644 index 00000000..3fe99b57 --- /dev/null +++ b/manifests/forc-migrate-0.0.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.0.4"; + date = "2021-11-05"; + url = "https://github.com/fuellabs/sway"; + rev = "d40239e7d49793c7d3d23e0d3de6595e40b89e11"; + sha256 = "sha256-Udtk0i4LfiXYMWLZtRiDbjXseqiTs83BJgqHaMvJGLA="; +} diff --git a/manifests/forc-migrate-0.1.0.nix b/manifests/forc-migrate-0.1.0.nix new file mode 100644 index 00000000..5a5ec2f0 --- /dev/null +++ b/manifests/forc-migrate-0.1.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.0"; + date = "2021-12-24"; + url = "https://github.com/fuellabs/sway"; + rev = "90c9b56a7fc313321fcc7580314284080d00078f"; + sha256 = "sha256-5VgXmm63O89wp6mayRf6ihMiK/JrXECfkmpo17MPEk4="; +} diff --git a/manifests/forc-migrate-0.1.1.nix b/manifests/forc-migrate-0.1.1.nix new file mode 100644 index 00000000..a608cff0 --- /dev/null +++ b/manifests/forc-migrate-0.1.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.1"; + date = "2021-12-24"; + url = "https://github.com/fuellabs/sway"; + rev = "8a37329cb1848efdeb46e2be1bfdb940b7750262"; + sha256 = "sha256-Ci4OJGp+iqmojxmf4Cg9m/2WG8jtKOPMDr2z6LDsOdU="; +} diff --git a/manifests/forc-migrate-0.1.2.nix b/manifests/forc-migrate-0.1.2.nix new file mode 100644 index 00000000..e935c893 --- /dev/null +++ b/manifests/forc-migrate-0.1.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.2"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2431af753ed8fc0a76df53fc72172cb4bdb5d4b9"; + sha256 = "sha256-FYwNTSaaZdtDGbOQ5/Tk4+lvyZ3PCJBtnNLE6+PuEng="; +} diff --git a/manifests/forc-migrate-0.1.3.nix b/manifests/forc-migrate-0.1.3.nix new file mode 100644 index 00000000..b9afb4e8 --- /dev/null +++ b/manifests/forc-migrate-0.1.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.3"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "d30d3225a30c46a9675ca5db270597190cc228bc"; + sha256 = "sha256-3kvkiTVQ5qSLqBPb3kl2VakJfQlCOYaTY9aonRgN6AY="; +} diff --git a/manifests/forc-migrate-0.1.4.nix b/manifests/forc-migrate-0.1.4.nix new file mode 100644 index 00000000..e0745680 --- /dev/null +++ b/manifests/forc-migrate-0.1.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.4"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "46305882aa552be287b28e55606ba74b81070460"; + sha256 = "sha256-/sFiQmmk/L+qqK9J/BrhPahg0no7YculAbB+TyB9s+Y="; +} diff --git a/manifests/forc-migrate-0.1.5.nix b/manifests/forc-migrate-0.1.5.nix new file mode 100644 index 00000000..1a6e849b --- /dev/null +++ b/manifests/forc-migrate-0.1.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.5"; + date = "2021-12-27"; + url = "https://github.com/fuellabs/sway"; + rev = "1923f44784e6d450796b10addd447aeb3325d519"; + sha256 = "sha256-X/c/HRNrZu3s/wKU2l9pkuuXpqPFZvqeeziW/9iloK4="; +} diff --git a/manifests/forc-migrate-0.1.6.nix b/manifests/forc-migrate-0.1.6.nix new file mode 100644 index 00000000..e06999b0 --- /dev/null +++ b/manifests/forc-migrate-0.1.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.6"; + date = "2021-12-28"; + url = "https://github.com/fuellabs/sway"; + rev = "a38a89a042f7ef13ddf67cc7661b37eac96aad8f"; + sha256 = "sha256-6HM7WTQsYaOXSvu8Jr0lh6KDQFpFJI+XybvzU8jFEic="; +} diff --git a/manifests/forc-migrate-0.1.7.nix b/manifests/forc-migrate-0.1.7.nix new file mode 100644 index 00000000..e52b07c5 --- /dev/null +++ b/manifests/forc-migrate-0.1.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.7"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "4038415bf9f681fca220bcf3951230b0e9129ba6"; + sha256 = "sha256-gcKYLveFcyiZtPxGjtk8W9dYCVdVUSsUMTW071WavX0="; +} diff --git a/manifests/forc-migrate-0.1.8.nix b/manifests/forc-migrate-0.1.8.nix new file mode 100644 index 00000000..f65b8bf3 --- /dev/null +++ b/manifests/forc-migrate-0.1.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.8"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "6fd0bc0b6ecf22f3b334a0c8da86e776a7e2b87d"; + sha256 = "sha256-2M3FGiWEq++cQIkxECjSHabbVuMTkuvCx0eFIuOSeU0="; +} diff --git a/manifests/forc-migrate-0.1.9.nix b/manifests/forc-migrate-0.1.9.nix new file mode 100644 index 00000000..461792eb --- /dev/null +++ b/manifests/forc-migrate-0.1.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.1.9"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "6fe6354eb96fa9b85c10e89f628bdf7ee525059d"; + sha256 = "sha256-Bwn4w93PqCxMquIz52cWQ3u0xtZCXf5TzkKzQvnV15M="; +} diff --git a/manifests/forc-migrate-0.10.0.nix b/manifests/forc-migrate-0.10.0.nix new file mode 100644 index 00000000..ffe14080 --- /dev/null +++ b/manifests/forc-migrate-0.10.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.10.0"; + date = "2022-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "a88ea439c95d9fb2701d6479ce496dc6571e92c2"; + sha256 = "sha256-YdU+xBfyQ6M4UVl/bgp5ba0byVUY7BMwryIZnradFNs="; +} diff --git a/manifests/forc-migrate-0.10.1.nix b/manifests/forc-migrate-0.10.1.nix new file mode 100644 index 00000000..a68e21e5 --- /dev/null +++ b/manifests/forc-migrate-0.10.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.10.1"; + date = "2022-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "5c85d2b712975669d238233297443557969dec43"; + sha256 = "sha256-8ocDTtJL468H3PpkQu5b9+lZtfjFP3MDK8YE2LtPYy4="; +} diff --git a/manifests/forc-migrate-0.10.2.nix b/manifests/forc-migrate-0.10.2.nix new file mode 100644 index 00000000..8c51c7d7 --- /dev/null +++ b/manifests/forc-migrate-0.10.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.10.2"; + date = "2022-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "443abbffd520f0f964e837fbc784641741fd7950"; + sha256 = "sha256-qnU5g9Oxusr67zIIei9cAUqT7VVkA2VDXbarM1abOgc="; +} diff --git a/manifests/forc-migrate-0.10.3.nix b/manifests/forc-migrate-0.10.3.nix new file mode 100644 index 00000000..34b1b0f0 --- /dev/null +++ b/manifests/forc-migrate-0.10.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.10.3"; + date = "2022-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "e7676db6f4ebc7a3885f87514d16a703a99410d7"; + sha256 = "sha256-/pWNhRZm+ev48LgpQhjGWuXG2TLvZSTpPHsZPLHcMiw="; +} diff --git a/manifests/forc-migrate-0.11.0.nix b/manifests/forc-migrate-0.11.0.nix new file mode 100644 index 00000000..ed328cce --- /dev/null +++ b/manifests/forc-migrate-0.11.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.11.0"; + date = "2022-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "95816e4e41aae1d3425ba6ff5e7266076d8400fa"; + sha256 = "sha256-2XvtFdkQwUVlUVSjQeTUHlEROQ8r1GOcG8uCPM3uDTc="; +} diff --git a/manifests/forc-migrate-0.12.1.nix b/manifests/forc-migrate-0.12.1.nix new file mode 100644 index 00000000..b9f332b7 --- /dev/null +++ b/manifests/forc-migrate-0.12.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.12.1"; + date = "2022-05-04"; + url = "https://github.com/fuellabs/sway"; + rev = "a03a5d1c068a91779e5ce08eead6c4626de2eb0d"; + sha256 = "sha256-nE10IRpnOkNHXfLfYhFhucjJ3JgdPW6AuNneLL14ymI="; +} diff --git a/manifests/forc-migrate-0.12.2.nix b/manifests/forc-migrate-0.12.2.nix new file mode 100644 index 00000000..220a4a16 --- /dev/null +++ b/manifests/forc-migrate-0.12.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.12.2"; + date = "2022-05-12"; + url = "https://github.com/fuellabs/sway"; + rev = "2b6e9384f06692ec627293ae5db5e2f748fe2c30"; + sha256 = "sha256-HTo5eP8jZP5tzesGGA1i5YUmofsWxFJGKw0oMfvWv0c="; +} diff --git a/manifests/forc-migrate-0.13.0.nix b/manifests/forc-migrate-0.13.0.nix new file mode 100644 index 00000000..56553e83 --- /dev/null +++ b/manifests/forc-migrate-0.13.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.13.0"; + date = "2022-05-19"; + url = "https://github.com/fuellabs/sway"; + rev = "6eef7ab750cd3282f08b6014960cbc02afae717a"; + sha256 = "sha256-iT90TBcMgmKTl/2MHR37Vtk7LcOshVMSshlU3BLhAG0="; +} diff --git a/manifests/forc-migrate-0.13.1.nix b/manifests/forc-migrate-0.13.1.nix new file mode 100644 index 00000000..c4eaee26 --- /dev/null +++ b/manifests/forc-migrate-0.13.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.13.1"; + date = "2022-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "d73d9d2b4b547e2035ddfe085d439de56ccee1f0"; + sha256 = "sha256-jbuvLymTQb8g4ERJeu0K24z2OIw8aDlkBPF+YjiUkIE="; +} diff --git a/manifests/forc-migrate-0.13.2.nix b/manifests/forc-migrate-0.13.2.nix new file mode 100644 index 00000000..70e3fc5e --- /dev/null +++ b/manifests/forc-migrate-0.13.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.13.2"; + date = "2022-05-25"; + url = "https://github.com/fuellabs/sway"; + rev = "dac1b96419a6ed46a4c531492ae5e794a270d4a1"; + sha256 = "sha256-LBuJ2ukkK1FosaLcZ10ds8/7ybN1UU/o0d9dRmbG5a4="; +} diff --git a/manifests/forc-migrate-0.14.0.nix b/manifests/forc-migrate-0.14.0.nix new file mode 100644 index 00000000..13238408 --- /dev/null +++ b/manifests/forc-migrate-0.14.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.14.0"; + date = "2022-05-26"; + url = "https://github.com/fuellabs/sway"; + rev = "953dad9cad0defe50ffe04e4031207fd247b63f1"; + sha256 = "sha256-/z+nNctB9t1qLKiemsg+QuV2jBnuYgd0tCe3cEkI1OU="; +} diff --git a/manifests/forc-migrate-0.14.1.nix b/manifests/forc-migrate-0.14.1.nix new file mode 100644 index 00000000..64d541a6 --- /dev/null +++ b/manifests/forc-migrate-0.14.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.14.1"; + date = "2022-05-26"; + url = "https://github.com/fuellabs/sway"; + rev = "02ef7d10b6bf883d73fc1fd23034dc814dfffea2"; + sha256 = "sha256-8Uh2gbZb1R1llk3h+DeCF3heBO2Ec3nJNqI6hpSTfq8="; +} diff --git a/manifests/forc-migrate-0.14.2.nix b/manifests/forc-migrate-0.14.2.nix new file mode 100644 index 00000000..2a7ee25b --- /dev/null +++ b/manifests/forc-migrate-0.14.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.14.2"; + date = "2022-05-27"; + url = "https://github.com/fuellabs/sway"; + rev = "6fc5c69f29a5aab0b6ca677d9384d0d5eaffb232"; + sha256 = "sha256-JGicorHY6HfSWoZa2nFOnx45qDrnXmORzHOOKHk/6sM="; +} diff --git a/manifests/forc-migrate-0.14.3.nix b/manifests/forc-migrate-0.14.3.nix new file mode 100644 index 00000000..c492c2fa --- /dev/null +++ b/manifests/forc-migrate-0.14.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.14.3"; + date = "2022-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "17f856bfa0d500e06fff2c470e8e6113533faf97"; + sha256 = "sha256-VfyRHFmz89GT7UP/JCR8lPZY5vxhfxnyyWheQdWSRn0="; +} diff --git a/manifests/forc-migrate-0.14.4.nix b/manifests/forc-migrate-0.14.4.nix new file mode 100644 index 00000000..291045c9 --- /dev/null +++ b/manifests/forc-migrate-0.14.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.14.4"; + date = "2022-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "b067a7dd64b26bd763eca268fef3849c2c77028d"; + sha256 = "sha256-VJGi0FlI+majMW66lo4Sxyo9NaaO+LgFyg7hHwckD1k="; +} diff --git a/manifests/forc-migrate-0.14.5.nix b/manifests/forc-migrate-0.14.5.nix new file mode 100644 index 00000000..d209ea3e --- /dev/null +++ b/manifests/forc-migrate-0.14.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.14.5"; + date = "2022-06-01"; + url = "https://github.com/fuellabs/sway"; + rev = "60c626cf486d5c53c44d84db1ec81cb90174cad3"; + sha256 = "sha256-3zI62Q+jaZYml3PjHn5Xsx635ARfUPsXBpOGDc0QzVM="; +} diff --git a/manifests/forc-migrate-0.15.0.nix b/manifests/forc-migrate-0.15.0.nix new file mode 100644 index 00000000..2cfbfffd --- /dev/null +++ b/manifests/forc-migrate-0.15.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.15.0"; + date = "2022-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "ee7822c411a3d6135ea590bbc5c85527c4ede6d7"; + sha256 = "sha256-7qdjLcxcKCHt+RNrVU9WRK+DUepB0G/5RkScHHWRFJQ="; +} diff --git a/manifests/forc-migrate-0.15.1.nix b/manifests/forc-migrate-0.15.1.nix new file mode 100644 index 00000000..15181e92 --- /dev/null +++ b/manifests/forc-migrate-0.15.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.15.1"; + date = "2022-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "a34b4b99fcdd065d559f6cbb9dec0697c3f5edd1"; + sha256 = "sha256-kR1NJqI6fOyDne1zvwIG2M92+dSOn+6Hby+Q4iMJAAQ="; +} diff --git a/manifests/forc-migrate-0.15.2.nix b/manifests/forc-migrate-0.15.2.nix new file mode 100644 index 00000000..0afdf7d6 --- /dev/null +++ b/manifests/forc-migrate-0.15.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.15.2"; + date = "2022-06-09"; + url = "https://github.com/fuellabs/sway"; + rev = "eab07e48bc6dbd0c80aedc1e363bb63a6d5f0e28"; + sha256 = "sha256-vE29EiJYF4T6FW/1odNJyZOc5HKHR5sC10bASSFcmuc="; +} diff --git a/manifests/forc-migrate-0.16.0.nix b/manifests/forc-migrate-0.16.0.nix new file mode 100644 index 00000000..f5055838 --- /dev/null +++ b/manifests/forc-migrate-0.16.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.16.0"; + date = "2022-06-16"; + url = "https://github.com/fuellabs/sway"; + rev = "948f7aba42b4138433fb5b61c698c8f4a60db424"; + sha256 = "sha256-5yPftMl1LJkub2yeGHF1BrLZZSYzg82IYFVpVWG0v48="; +} diff --git a/manifests/forc-migrate-0.16.1.nix b/manifests/forc-migrate-0.16.1.nix new file mode 100644 index 00000000..0dcf8dfe --- /dev/null +++ b/manifests/forc-migrate-0.16.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.16.1"; + date = "2022-06-17"; + url = "https://github.com/fuellabs/sway"; + rev = "dcf22453aeb054335d96ef810da9d4f756d869b7"; + sha256 = "sha256-kAZVbgkf7ganCs+sBPL0eMmR3MDCm6s+qL8d1CfHL8U="; +} diff --git a/manifests/forc-migrate-0.16.2.nix b/manifests/forc-migrate-0.16.2.nix new file mode 100644 index 00000000..1fd81989 --- /dev/null +++ b/manifests/forc-migrate-0.16.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.16.2"; + date = "2022-06-24"; + url = "https://github.com/fuellabs/sway"; + rev = "7920330d34c97cf418b6d0e1561f978068158228"; + sha256 = "sha256-NpCpZYxgJeUcgw5QqnAhzVmEkMrR7cs2Sj6aW6Rm6JU="; +} diff --git a/manifests/forc-migrate-0.17.0.nix b/manifests/forc-migrate-0.17.0.nix new file mode 100644 index 00000000..863e46bf --- /dev/null +++ b/manifests/forc-migrate-0.17.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.17.0"; + date = "2022-07-01"; + url = "https://github.com/fuellabs/sway"; + rev = "b81bcd9652d4fc9908d1971c9215a7cfdde39adc"; + sha256 = "sha256-cOyJXvwyZbZeTLfw9xoAtY1rsHN29VXLkRsEeCZyDmI="; +} diff --git a/manifests/forc-migrate-0.18.0.nix b/manifests/forc-migrate-0.18.0.nix new file mode 100644 index 00000000..105cff35 --- /dev/null +++ b/manifests/forc-migrate-0.18.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.18.0"; + date = "2022-07-08"; + url = "https://github.com/fuellabs/sway"; + rev = "ada0d294a68e5ca3070e3c46eb89619e7d87caf2"; + sha256 = "sha256-9a39KoLnQ7urf7pBwxFy8B2+SELuhhx6JDZjyZo2rSQ="; +} diff --git a/manifests/forc-migrate-0.18.1.nix b/manifests/forc-migrate-0.18.1.nix new file mode 100644 index 00000000..9b8b92a2 --- /dev/null +++ b/manifests/forc-migrate-0.18.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.18.1"; + date = "2022-07-11"; + url = "https://github.com/fuellabs/sway"; + rev = "3bd8eaf4a0f11a3009c9421100cc06c2e897b6c2"; + sha256 = "sha256-WI7srBdT5WAMZ6OfUWAcihZcpxbn/ogfVE3LaoQptcM="; +} diff --git a/manifests/forc-migrate-0.19.0.nix b/manifests/forc-migrate-0.19.0.nix new file mode 100644 index 00000000..3d183b74 --- /dev/null +++ b/manifests/forc-migrate-0.19.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.19.0"; + date = "2022-07-27"; + url = "https://github.com/fuellabs/sway"; + rev = "5c716e1ba55d755555ed5aa186c883f73c4f90dc"; + sha256 = "sha256-DKB7ykAHVte8Dt566iNdY6CIkvs06zRxCWT50LoQRBk="; +} diff --git a/manifests/forc-migrate-0.19.1.nix b/manifests/forc-migrate-0.19.1.nix new file mode 100644 index 00000000..4515516d --- /dev/null +++ b/manifests/forc-migrate-0.19.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.19.1"; + date = "2022-08-01"; + url = "https://github.com/fuellabs/sway"; + rev = "1202e790c119ff9f04c847ecaab3411cfaf32f94"; + sha256 = "sha256-jFtMg6C861fIWZBmX5SbSsvQwPUr+KWQOcQnPDweWUo="; +} diff --git a/manifests/forc-migrate-0.19.2.nix b/manifests/forc-migrate-0.19.2.nix new file mode 100644 index 00000000..e3dfa470 --- /dev/null +++ b/manifests/forc-migrate-0.19.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.19.2"; + date = "2022-08-08"; + url = "https://github.com/fuellabs/sway"; + rev = "6808861389966f99887f71476918a562a9edd90e"; + sha256 = "sha256-LL5jMwMvw//bN8SkI5K/tNF+7NKuuOXpcMGezEmrQ4g="; +} diff --git a/manifests/forc-migrate-0.2.0.nix b/manifests/forc-migrate-0.2.0.nix new file mode 100644 index 00000000..5d15d783 --- /dev/null +++ b/manifests/forc-migrate-0.2.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.2.0"; + date = "2022-01-06"; + url = "https://github.com/fuellabs/sway"; + rev = "38479274e0c50518e20c919682b8173ae4a555d3"; + sha256 = "sha256-48BfRiY2evrKlcz1bXBWoWQgRtkk4jc2r3GZRj28sPo="; +} diff --git a/manifests/forc-migrate-0.2.1.nix b/manifests/forc-migrate-0.2.1.nix new file mode 100644 index 00000000..760b47c5 --- /dev/null +++ b/manifests/forc-migrate-0.2.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.2.1"; + date = "2022-01-07"; + url = "https://github.com/fuellabs/sway"; + rev = "a790fd729b2021f837be924c7b8b21099b9f6c12"; + sha256 = "sha256-TUQQa1uE9JuZzEnXxrOAeBplNkzt9MRWzPjxZdECZg8="; +} diff --git a/manifests/forc-migrate-0.20.0.nix b/manifests/forc-migrate-0.20.0.nix new file mode 100644 index 00000000..d4bb9ad4 --- /dev/null +++ b/manifests/forc-migrate-0.20.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.20.0"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "fc3a05d87d1178e937fc5e4742b13fcca490057d"; + sha256 = "sha256-gJaLWboU9LNEn9Xu+0AIveFvG3wCTMH1P95H+DVJCRw="; +} diff --git a/manifests/forc-migrate-0.20.1.nix b/manifests/forc-migrate-0.20.1.nix new file mode 100644 index 00000000..3028e888 --- /dev/null +++ b/manifests/forc-migrate-0.20.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.20.1"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "21887f4b321bfacb16c7a6602071e3b6ea1c8df1"; + sha256 = "sha256-mO7vojv7gEfBJaEmBW2uQTo1ecLNoTL6E1o1d68saBQ="; +} diff --git a/manifests/forc-migrate-0.20.2.nix b/manifests/forc-migrate-0.20.2.nix new file mode 100644 index 00000000..07922d0e --- /dev/null +++ b/manifests/forc-migrate-0.20.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.20.2"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "6a8116fcee71aa960217b1672bac0c35d1fce42c"; + sha256 = "sha256-JfjHda4vRGPiZ2EhJbGMzpSJ24bFFS3WlPxtXmI3mno="; +} diff --git a/manifests/forc-migrate-0.21.0.nix b/manifests/forc-migrate-0.21.0.nix new file mode 100644 index 00000000..2b9e8412 --- /dev/null +++ b/manifests/forc-migrate-0.21.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.21.0"; + date = "2022-08-29"; + url = "https://github.com/fuellabs/sway"; + rev = "32b5b142b54d3d38ae1f7df69f465138e86de82d"; + sha256 = "sha256-joWJifoFBzzK9FdhQwyYwVuDU4/8hQzmrUgD7+2BSJY="; +} diff --git a/manifests/forc-migrate-0.22.0.nix b/manifests/forc-migrate-0.22.0.nix new file mode 100644 index 00000000..d7da9e79 --- /dev/null +++ b/manifests/forc-migrate-0.22.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.22.0"; + date = "2022-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "6e1fbca21f0979d226efd7ceea5b6d71696536cd"; + sha256 = "sha256-cK7YReHEq3Z/wVV6bxTohdHI9c2zSz53Sej8GCWSIrI="; +} diff --git a/manifests/forc-migrate-0.22.1.nix b/manifests/forc-migrate-0.22.1.nix new file mode 100644 index 00000000..f1429956 --- /dev/null +++ b/manifests/forc-migrate-0.22.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.22.1"; + date = "2022-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "c486eabc3ed4d8c53b63735188f2c1db5d17703c"; + sha256 = "sha256-fChGs4bPxg82noIJooec6Tk908T8BrDUWH6YQNvAuhg="; +} diff --git a/manifests/forc-migrate-0.23.0.nix b/manifests/forc-migrate-0.23.0.nix new file mode 100644 index 00000000..1237ff6c --- /dev/null +++ b/manifests/forc-migrate-0.23.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.23.0"; + date = "2022-09-03"; + url = "https://github.com/fuellabs/sway"; + rev = "4712e5b26c6c0f778d7771ef1b35a229fe3a371d"; + sha256 = "sha256-ZdH69u5DOe/fjARXWpJe0J21K/rVL4YJD5/qHQdlr50="; +} diff --git a/manifests/forc-migrate-0.24.0.nix b/manifests/forc-migrate-0.24.0.nix new file mode 100644 index 00000000..90c251d8 --- /dev/null +++ b/manifests/forc-migrate-0.24.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.24.0"; + date = "2022-09-06"; + url = "https://github.com/fuellabs/sway"; + rev = "ea4f1b7885248c2b4c4d0da394c2cc50ea1583e8"; + sha256 = "sha256-2DwlfRw+aw9g4E2wPeomlGH/qe6O0kKha3Vu3+HY4AI="; +} diff --git a/manifests/forc-migrate-0.24.1.nix b/manifests/forc-migrate-0.24.1.nix new file mode 100644 index 00000000..d31404b9 --- /dev/null +++ b/manifests/forc-migrate-0.24.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.24.1"; + date = "2022-09-07"; + url = "https://github.com/fuellabs/sway"; + rev = "54e1a340e6c0c9a675e8a66aab03f579d5d6b39b"; + sha256 = "sha256-t/VFaYCANGY5CM2FFrLhNiBB5eAL/CFCZvIzigr3d1I="; +} diff --git a/manifests/forc-migrate-0.24.2.nix b/manifests/forc-migrate-0.24.2.nix new file mode 100644 index 00000000..25a67fe9 --- /dev/null +++ b/manifests/forc-migrate-0.24.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.24.2"; + date = "2022-09-09"; + url = "https://github.com/fuellabs/sway"; + rev = "057e83aee87d17c3812f223f5fc7884cf6d3468a"; + sha256 = "sha256-XQePJ7tvPqjAAnqdpavkUxuCtH8MmaiXSDrhIUpjVQo="; +} diff --git a/manifests/forc-migrate-0.24.3.nix b/manifests/forc-migrate-0.24.3.nix new file mode 100644 index 00000000..ae8716e3 --- /dev/null +++ b/manifests/forc-migrate-0.24.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.24.3"; + date = "2022-09-12"; + url = "https://github.com/fuellabs/sway"; + rev = "95cd150cacef407a1f30c89899c539b0d57f099d"; + sha256 = "sha256-oWQpD2HohdjQ0lcnOjipT0oTIX68KnoWy13FeXYKi7E="; +} diff --git a/manifests/forc-migrate-0.24.4.nix b/manifests/forc-migrate-0.24.4.nix new file mode 100644 index 00000000..6a9db524 --- /dev/null +++ b/manifests/forc-migrate-0.24.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.24.4"; + date = "2022-09-16"; + url = "https://github.com/fuellabs/sway"; + rev = "f7800e18979dd8e4c8d672b8e7aae1758c2edb88"; + sha256 = "sha256-jRqUQv7nsv0xq+CNrEYCnt0yfiVycTUF3eYOMt/DCdQ="; +} diff --git a/manifests/forc-migrate-0.24.5.nix b/manifests/forc-migrate-0.24.5.nix new file mode 100644 index 00000000..85794c40 --- /dev/null +++ b/manifests/forc-migrate-0.24.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.24.5"; + date = "2022-09-24"; + url = "https://github.com/fuellabs/sway"; + rev = "e695606d8884a18664f6231681333a784e623bc9"; + sha256 = "sha256-gsLMsR+sFj3tvE86JvKzj95aMp1o9ERBkTskr+ejUhM="; +} diff --git a/manifests/forc-migrate-0.25.0.nix b/manifests/forc-migrate-0.25.0.nix new file mode 100644 index 00000000..70f3ba93 --- /dev/null +++ b/manifests/forc-migrate-0.25.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.25.0"; + date = "2022-10-05"; + url = "https://github.com/fuellabs/sway"; + rev = "0f84734f6f95a8598d701b087e486caacf23f514"; + sha256 = "sha256-tXUEiGKpq7H5nSUICGlUeUJtDnKjwDpBvzl5d3jd8OE="; +} diff --git a/manifests/forc-migrate-0.25.1.nix b/manifests/forc-migrate-0.25.1.nix new file mode 100644 index 00000000..896fcee2 --- /dev/null +++ b/manifests/forc-migrate-0.25.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.25.1"; + date = "2022-10-06"; + url = "https://github.com/fuellabs/sway"; + rev = "cc9740bea1438cdde7f15fa0d0c2eba705b6aef1"; + sha256 = "sha256-YeTt1+D8e3VnqBmn5VWa/NUlDEOzf8zxeuYh5QXBEVM="; +} diff --git a/manifests/forc-migrate-0.25.2.nix b/manifests/forc-migrate-0.25.2.nix new file mode 100644 index 00000000..256cf271 --- /dev/null +++ b/manifests/forc-migrate-0.25.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.25.2"; + date = "2022-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "dfa6224932a97c514b707dcfc300715b2a0895dc"; + sha256 = "sha256-rZrjzlGIdv1ul2xb94YkkUqXWEbACFQKXirpa/uuITs="; +} diff --git a/manifests/forc-migrate-0.26.0.nix b/manifests/forc-migrate-0.26.0.nix new file mode 100644 index 00000000..feb01047 --- /dev/null +++ b/manifests/forc-migrate-0.26.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.26.0"; + date = "2022-10-13"; + url = "https://github.com/fuellabs/sway"; + rev = "e7674f704f2706e22f77c0ed32df9c89302e5e7e"; + sha256 = "sha256-S7jlje5wd2RiO4+IDjoWUiN19h21DK1sUWlziwxb+3I="; +} diff --git a/manifests/forc-migrate-0.27.0.nix b/manifests/forc-migrate-0.27.0.nix new file mode 100644 index 00000000..3da69690 --- /dev/null +++ b/manifests/forc-migrate-0.27.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.27.0"; + date = "2022-10-23"; + url = "https://github.com/fuellabs/sway"; + rev = "40f1e79de08af109f2ebb066f51704f36094ed1e"; + sha256 = "sha256-qIso6YBCs4HKu1fAqM0fgq0vcaOqgGeZ2CY0ZLjTm+o="; +} diff --git a/manifests/forc-migrate-0.28.0.nix b/manifests/forc-migrate-0.28.0.nix new file mode 100644 index 00000000..b99b7ee9 --- /dev/null +++ b/manifests/forc-migrate-0.28.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.28.0"; + date = "2022-10-25"; + url = "https://github.com/fuellabs/sway"; + rev = "a7978381effcf999adc5726587bf8f711f04e414"; + sha256 = "sha256-3xqbdGXjWIfdZV7po64bp+N79MGfEkL0fRyKcel0A2s="; +} diff --git a/manifests/forc-migrate-0.28.1.nix b/manifests/forc-migrate-0.28.1.nix new file mode 100644 index 00000000..b28e9681 --- /dev/null +++ b/manifests/forc-migrate-0.28.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.28.1"; + date = "2022-10-25"; + url = "https://github.com/fuellabs/sway"; + rev = "84f9aad376760cd9c8eacc8a4848bffeb25bf9a5"; + sha256 = "sha256-S5sB6ahI7P2Qv4Rh3GTE7lkYcEAbp1znpW/hlkyuh9U="; +} diff --git a/manifests/forc-migrate-0.29.0.nix b/manifests/forc-migrate-0.29.0.nix new file mode 100644 index 00000000..4e28678d --- /dev/null +++ b/manifests/forc-migrate-0.29.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.29.0"; + date = "2022-10-31"; + url = "https://github.com/fuellabs/sway"; + rev = "dc8e5f6b84741a3a690ba25b473f8b1e01e31103"; + sha256 = "sha256-HVGhxE8PgPcCok8BE7ESmlbC3RHAOT6QtdhB0W60D6g="; +} diff --git a/manifests/forc-migrate-0.3.0.nix b/manifests/forc-migrate-0.3.0.nix new file mode 100644 index 00000000..d55164b7 --- /dev/null +++ b/manifests/forc-migrate-0.3.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.3.0"; + date = "2022-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "b81eee7d23af71958ba1a3276855949277902a57"; + sha256 = "sha256-25ZOELcJchuJapvGZFigzsl3BPEUW/R3f5NhvoXBKeE="; +} diff --git a/manifests/forc-migrate-0.3.1.nix b/manifests/forc-migrate-0.3.1.nix new file mode 100644 index 00000000..304834e7 --- /dev/null +++ b/manifests/forc-migrate-0.3.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.3.1"; + date = "2022-01-23"; + url = "https://github.com/fuellabs/sway"; + rev = "d9b5a1103a1f37672d6f09c8dae34b813872d44b"; + sha256 = "sha256-eYVjjBkg6Gxc7mKMl7oaK3Ws2XVDHWAt+z3WIjGM3Xs="; +} diff --git a/manifests/forc-migrate-0.3.2.nix b/manifests/forc-migrate-0.3.2.nix new file mode 100644 index 00000000..8d956da4 --- /dev/null +++ b/manifests/forc-migrate-0.3.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.3.2"; + date = "2022-01-27"; + url = "https://github.com/fuellabs/sway"; + rev = "3012191420362e9ba1df0324b2a9e80eeded7e1d"; + sha256 = "sha256-5AirUGidtaNFfVf4uSutfrEvs2wd/ROiDyudYHb2EWQ="; +} diff --git a/manifests/forc-migrate-0.3.3.nix b/manifests/forc-migrate-0.3.3.nix new file mode 100644 index 00000000..6231d6ec --- /dev/null +++ b/manifests/forc-migrate-0.3.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.3.3"; + date = "2022-01-27"; + url = "https://github.com/fuellabs/sway"; + rev = "441ab123839f2eb4f5dd1b055fdbe5a5b26a6736"; + sha256 = "sha256-QI8nqWfKr+/yGP96NnNdpKGwHHzA6UxEyQvjwQLgcSU="; +} diff --git a/manifests/forc-migrate-0.30.0.nix b/manifests/forc-migrate-0.30.0.nix new file mode 100644 index 00000000..238af8e2 --- /dev/null +++ b/manifests/forc-migrate-0.30.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.30.0"; + date = "2022-11-02"; + url = "https://github.com/fuellabs/sway"; + rev = "37deaee8fccf5804d78a003cf64f14fac654fc41"; + sha256 = "sha256-BIVBDX3i2ym6d/90AuK/I/ATtJqUFZS9OdltCdBtqI0="; +} diff --git a/manifests/forc-migrate-0.30.1.nix b/manifests/forc-migrate-0.30.1.nix new file mode 100644 index 00000000..064785e0 --- /dev/null +++ b/manifests/forc-migrate-0.30.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.30.1"; + date = "2022-11-04"; + url = "https://github.com/fuellabs/sway"; + rev = "158f22115bf000d45862be95ff7fdb0ff5bdee4d"; + sha256 = "sha256-m0y1Zy0iyWCuyqfMhYGQ2myb4zhcZHqLRZIk4ZWZ338="; +} diff --git a/manifests/forc-migrate-0.31.0.nix b/manifests/forc-migrate-0.31.0.nix new file mode 100644 index 00000000..7a4dc62c --- /dev/null +++ b/manifests/forc-migrate-0.31.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.31.0"; + date = "2022-11-09"; + url = "https://github.com/fuellabs/sway"; + rev = "7a389ddb35bae051938e5441c8ef4a8b63dd269c"; + sha256 = "sha256-fRGQtZxDPD0sPfpt6xKYOaR9Ty1NDqR8El6rRIuU83M="; +} diff --git a/manifests/forc-migrate-0.31.1.nix b/manifests/forc-migrate-0.31.1.nix new file mode 100644 index 00000000..30b0f02a --- /dev/null +++ b/manifests/forc-migrate-0.31.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.31.1"; + date = "2022-11-11"; + url = "https://github.com/fuellabs/sway"; + rev = "c32b0759d25c0b515cbf535f9fb9b8e6fda38ff2"; + sha256 = "sha256-5GlH4fTix4r+b66tsE1vx/iyJCsNPnWjfuY7Iu36234="; +} diff --git a/manifests/forc-migrate-0.31.2.nix b/manifests/forc-migrate-0.31.2.nix new file mode 100644 index 00000000..d297c04b --- /dev/null +++ b/manifests/forc-migrate-0.31.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.31.2"; + date = "2022-11-29"; + url = "https://github.com/fuellabs/sway"; + rev = "12239f7d57441a75b0979f2f34d5151a777a5c0a"; + sha256 = "sha256-9qHs1OatcgPBSLToDkCvTfTXxeAOTjrM1jABQZxqUaI="; +} diff --git a/manifests/forc-migrate-0.31.3.nix b/manifests/forc-migrate-0.31.3.nix new file mode 100644 index 00000000..aa384ce1 --- /dev/null +++ b/manifests/forc-migrate-0.31.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.31.3"; + date = "2022-11-30"; + url = "https://github.com/fuellabs/sway"; + rev = "12ad8423811d566972dd75fbb954cdb95afde8d8"; + sha256 = "sha256-vsRRV7NAxSQw+NlZr7dUe2g0Hd8LSjkyXxDiygVfb54="; +} diff --git a/manifests/forc-migrate-0.32.0.nix b/manifests/forc-migrate-0.32.0.nix new file mode 100644 index 00000000..b8b6ed8c --- /dev/null +++ b/manifests/forc-migrate-0.32.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.32.0"; + date = "2022-12-14"; + url = "https://github.com/fuellabs/sway"; + rev = "ed1610a2f6bce5fba39ec53fe7da1ba2f05da4ce"; + sha256 = "sha256-ZteML6BecCLkj7w5fVJcRVxRYpZocpgNXuNRjDszEYc="; +} diff --git a/manifests/forc-migrate-0.32.1.nix b/manifests/forc-migrate-0.32.1.nix new file mode 100644 index 00000000..47524a11 --- /dev/null +++ b/manifests/forc-migrate-0.32.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.32.1"; + date = "2022-12-14"; + url = "https://github.com/fuellabs/sway"; + rev = "50c1b6c858c044acf88760cb7eb1b39d076f322d"; + sha256 = "sha256-GnF8eHwhcCC0Yr73jNVjyZUh1lOU9YmFslFzeZnSqHo="; +} diff --git a/manifests/forc-migrate-0.32.2.nix b/manifests/forc-migrate-0.32.2.nix new file mode 100644 index 00000000..f12f2e65 --- /dev/null +++ b/manifests/forc-migrate-0.32.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.32.2"; + date = "2022-12-15"; + url = "https://github.com/fuellabs/sway"; + rev = "b9996f13463c324e256014935c053c334b880ab5"; + sha256 = "sha256-ZCAsObQ50XJnsc64XFB/6ia8fjX3vi4rHug6FuC2ySc="; +} diff --git a/manifests/forc-migrate-0.33.0.nix b/manifests/forc-migrate-0.33.0.nix new file mode 100644 index 00000000..35bc5c8d --- /dev/null +++ b/manifests/forc-migrate-0.33.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.33.0"; + date = "2023-01-05"; + url = "https://github.com/fuellabs/sway"; + rev = "2b2b4b117c4f6a5e762e368af0dfc6896fa31e7d"; + sha256 = "sha256-K/RT9WFv1uGpBbwckvhcvXPdEnNjluSd2f7CNdjeGhQ="; +} diff --git a/manifests/forc-migrate-0.33.1.nix b/manifests/forc-migrate-0.33.1.nix new file mode 100644 index 00000000..d2e29a2f --- /dev/null +++ b/manifests/forc-migrate-0.33.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.33.1"; + date = "2023-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "acd4c1e0fbdc406800a06c845430a80dd3560fcc"; + sha256 = "sha256-00KVxZUcyCrE4RT2WrmHtxFFFyxLuiD6nJV9PoDzHng="; +} diff --git a/manifests/forc-migrate-0.34.0.nix b/manifests/forc-migrate-0.34.0.nix new file mode 100644 index 00000000..24536fc2 --- /dev/null +++ b/manifests/forc-migrate-0.34.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.34.0"; + date = "2023-02-01"; + url = "https://github.com/fuellabs/sway"; + rev = "ddb0ede05e649489b554da4f7a8003b507443ad0"; + sha256 = "sha256-LI/cJybVpg/cpY6vD5YdmlAJkPc0q9hIeGlE4j+YfAc="; +} diff --git a/manifests/forc-migrate-0.35.0.nix b/manifests/forc-migrate-0.35.0.nix new file mode 100644 index 00000000..b6031807 --- /dev/null +++ b/manifests/forc-migrate-0.35.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.35.0"; + date = "2023-02-08"; + url = "https://github.com/fuellabs/sway"; + rev = "b6f19a3be7b2fb5ef88e358a926854dac10cb281"; + sha256 = "sha256-gXmI2j0z7OP3iXMT8F7HNH4Gvei6aFxluYRgbiyU7fo="; +} diff --git a/manifests/forc-migrate-0.35.1.nix b/manifests/forc-migrate-0.35.1.nix new file mode 100644 index 00000000..28828fc6 --- /dev/null +++ b/manifests/forc-migrate-0.35.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.35.1"; + date = "2023-02-15"; + url = "https://github.com/fuellabs/sway"; + rev = "1f9debfaf9b85d41f3b704c45633eb4daddcb594"; + sha256 = "sha256-dcPtllP66f7J5YVqY+T9gj9DvOZX1fvZb2EOCi3DsRM="; +} diff --git a/manifests/forc-migrate-0.35.2.nix b/manifests/forc-migrate-0.35.2.nix new file mode 100644 index 00000000..129c65e9 --- /dev/null +++ b/manifests/forc-migrate-0.35.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.35.2"; + date = "2023-02-17"; + url = "https://github.com/fuellabs/sway"; + rev = "f05ecaf2de1ebe3b3da80ecd8eb6053a84145cf4"; + sha256 = "sha256-FArhyYdJxGWDkJ0gpVufzbMfsQ4ZHiPqQu/9W3mUWco="; +} diff --git a/manifests/forc-migrate-0.35.3.nix b/manifests/forc-migrate-0.35.3.nix new file mode 100644 index 00000000..952d95c3 --- /dev/null +++ b/manifests/forc-migrate-0.35.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.35.3"; + date = "2023-02-21"; + url = "https://github.com/fuellabs/sway"; + rev = "5d2b10bd83791d2eaff04206dbd45bfdd9cf23ff"; + sha256 = "sha256-hHQRdaQR3Qs05VfLc0nJD3lFldGuYTT6XQbszplA3vA="; +} diff --git a/manifests/forc-migrate-0.35.4.nix b/manifests/forc-migrate-0.35.4.nix new file mode 100644 index 00000000..0c30e199 --- /dev/null +++ b/manifests/forc-migrate-0.35.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.35.4"; + date = "2023-03-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3770dd8c21540e54dee818aa5cbc0a6170102695"; + sha256 = "sha256-8e10JdvWKDarXNFk5Oyc1I3+5s108M2ck/yLTIlVI5I="; +} diff --git a/manifests/forc-migrate-0.35.5.nix b/manifests/forc-migrate-0.35.5.nix new file mode 100644 index 00000000..09e049fb --- /dev/null +++ b/manifests/forc-migrate-0.35.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.35.5"; + date = "2023-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "49eae2dd93a1957e2a2c2fb3f51b11eb3791fc24"; + sha256 = "sha256-RibkxvZno7nLScV14AwnndbzJ29IWTSFQ/xB4PmO5ZE="; +} diff --git a/manifests/forc-migrate-0.36.0.nix b/manifests/forc-migrate-0.36.0.nix new file mode 100644 index 00000000..47c5d7e1 --- /dev/null +++ b/manifests/forc-migrate-0.36.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.36.0"; + date = "2023-04-04"; + url = "https://github.com/fuellabs/sway"; + rev = "77f575ab7921fdb23d5373072272512264bd99f4"; + sha256 = "sha256-GeQ643/pJahTBmGTtIUl34QH4UCYvfeeQuFXKnlN2Ng="; +} diff --git a/manifests/forc-migrate-0.36.1.nix b/manifests/forc-migrate-0.36.1.nix new file mode 100644 index 00000000..52d16d0e --- /dev/null +++ b/manifests/forc-migrate-0.36.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.36.1"; + date = "2023-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "92818a4d5ec89b5d4fb62196261cf578d58e52e3"; + sha256 = "sha256-F+qUImoSCv8H90IOpmtdIYSmNdLZivkN/Nm7W3oUdM4="; +} diff --git a/manifests/forc-migrate-0.37.0.nix b/manifests/forc-migrate-0.37.0.nix new file mode 100644 index 00000000..57031484 --- /dev/null +++ b/manifests/forc-migrate-0.37.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.37.0"; + date = "2023-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "607ac50176db8bef936f91bacf435d0ea37d041e"; + sha256 = "sha256-+FrktHUq2mX2u4fl4C9hLrV8fQ9DrSSbpf5umSMHQNw="; +} diff --git a/manifests/forc-migrate-0.37.1.nix b/manifests/forc-migrate-0.37.1.nix new file mode 100644 index 00000000..270faaab --- /dev/null +++ b/manifests/forc-migrate-0.37.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.37.1"; + date = "2023-04-13"; + url = "https://github.com/fuellabs/sway"; + rev = "83e5479462ed2883591669a42552606ac25f0a04"; + sha256 = "sha256-fR9E77G2Vc+StVZ/whmnan2/hWZFKPjoRJsJHV2MI5k="; +} diff --git a/manifests/forc-migrate-0.37.2.nix b/manifests/forc-migrate-0.37.2.nix new file mode 100644 index 00000000..91506ad0 --- /dev/null +++ b/manifests/forc-migrate-0.37.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.37.2"; + date = "2023-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "dc6af913939698452359474c33ecebe0ad35ca48"; + sha256 = "sha256-DA3ryR//UYhbX8nSWiA+UL23TyejhfMzTbmFhDte/OY="; +} diff --git a/manifests/forc-migrate-0.37.3.nix b/manifests/forc-migrate-0.37.3.nix new file mode 100644 index 00000000..7ae130d1 --- /dev/null +++ b/manifests/forc-migrate-0.37.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.37.3"; + date = "2023-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "d09ef912828f5fc7193501ccf8a0d0fb0f36a821"; + sha256 = "sha256-+s9bBrFC5Mun+FwaYS28Wn9nPyxaACAfiW0tuKRPQvg="; +} diff --git a/manifests/forc-migrate-0.38.0.nix b/manifests/forc-migrate-0.38.0.nix new file mode 100644 index 00000000..19bb77bf --- /dev/null +++ b/manifests/forc-migrate-0.38.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.38.0"; + date = "2023-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2d16d70ab9d5ab0de0255941048f811b6d07c6b1"; + sha256 = "sha256-xweooodyzG11dWyrrP3MZ6e0vSnkk20svbgbIXkBolw="; +} diff --git a/manifests/forc-migrate-0.39.0.nix b/manifests/forc-migrate-0.39.0.nix new file mode 100644 index 00000000..f54d588d --- /dev/null +++ b/manifests/forc-migrate-0.39.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.39.0"; + date = "2023-05-17"; + url = "https://github.com/fuellabs/sway"; + rev = "7a095280e7e1c0bfbbfc201867896e720aab7209"; + sha256 = "sha256-zUzS+IKW2eNbd3L0lArS4BqJ1bkecnxDN62tCIIvYb8="; +} diff --git a/manifests/forc-migrate-0.39.1.nix b/manifests/forc-migrate-0.39.1.nix new file mode 100644 index 00000000..f8706bc2 --- /dev/null +++ b/manifests/forc-migrate-0.39.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.39.1"; + date = "2023-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "e3065657c907225a8fdfe2d2210a7a3bd2b55c73"; + sha256 = "sha256-ytLjZOrHW8XkqzwVRoTPNrzozDF1jmYxxKGVxGqS2G4="; +} diff --git a/manifests/forc-migrate-0.4.0.nix b/manifests/forc-migrate-0.4.0.nix new file mode 100644 index 00000000..1d3f3cca --- /dev/null +++ b/manifests/forc-migrate-0.4.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.4.0"; + date = "2022-02-08"; + url = "https://github.com/fuellabs/sway"; + rev = "6332f9ad955e1f8e744cc87e07d028092874e0d5"; + sha256 = "sha256-lDyAgfNC5ezqptxuM7lycuVEofI5W62hzY011MzXUt8="; +} diff --git a/manifests/forc-migrate-0.40.0.nix b/manifests/forc-migrate-0.40.0.nix new file mode 100644 index 00000000..e182d708 --- /dev/null +++ b/manifests/forc-migrate-0.40.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.40.0"; + date = "2023-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "164c7c8bea3ce264581058d4165df71ee761e0b3"; + sha256 = "sha256-J3csh7R4IydBXmq3cY/hbHlVWiXcfhkDA9XLSH8PD58="; +} diff --git a/manifests/forc-migrate-0.40.1.nix b/manifests/forc-migrate-0.40.1.nix new file mode 100644 index 00000000..863fc8db --- /dev/null +++ b/manifests/forc-migrate-0.40.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.40.1"; + date = "2023-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "48104d0bde0d343154a5bc39a310092532883235"; + sha256 = "sha256-6qGMJ5W+/b9ZW+IBgvK0FXmDYWk5Yalund1mgb50yPg="; +} diff --git a/manifests/forc-migrate-0.41.0.nix b/manifests/forc-migrate-0.41.0.nix new file mode 100644 index 00000000..bb418ff0 --- /dev/null +++ b/manifests/forc-migrate-0.41.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.41.0"; + date = "2023-06-30"; + url = "https://github.com/fuellabs/sway"; + rev = "0d45b890c9eaa75b88093a9a4cbecbf5ca8c0731"; + sha256 = "sha256-G9KOf1V44mXHMoqhWHUu68NOywE1pcOIhV1eB2DU44g="; +} diff --git a/manifests/forc-migrate-0.42.0.nix b/manifests/forc-migrate-0.42.0.nix new file mode 100644 index 00000000..b3c318c7 --- /dev/null +++ b/manifests/forc-migrate-0.42.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.42.0"; + date = "2023-07-06"; + url = "https://github.com/fuellabs/sway"; + rev = "c4e4ef7e4ae52a21ae1aa709d1f43ac680987bd1"; + sha256 = "sha256-6kSeffKJqJCA4jpfFSDFOpu/d15qeh4lk/CYp/qd148="; +} diff --git a/manifests/forc-migrate-0.42.1.nix b/manifests/forc-migrate-0.42.1.nix new file mode 100644 index 00000000..736a223d --- /dev/null +++ b/manifests/forc-migrate-0.42.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.42.1"; + date = "2023-07-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3b66f8e424bd21e3ba467783b10b36e808cfa6ee"; + sha256 = "sha256-lFBConaiCIcElcN35eZH8WW+opGc2bur+UZkw8wPtTw="; +} diff --git a/manifests/forc-migrate-0.43.0.nix b/manifests/forc-migrate-0.43.0.nix new file mode 100644 index 00000000..aa361c27 --- /dev/null +++ b/manifests/forc-migrate-0.43.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.43.0"; + date = "2023-08-02"; + url = "https://github.com/fuellabs/sway"; + rev = "3efc60e22b4a7b6898b2cb0c678a36fccbe1b9c9"; + sha256 = "sha256-V56LmioCJyq50586GqeveEj79Yd1j859BbYW6yJAuow="; +} diff --git a/manifests/forc-migrate-0.43.1.nix b/manifests/forc-migrate-0.43.1.nix new file mode 100644 index 00000000..bed89b57 --- /dev/null +++ b/manifests/forc-migrate-0.43.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.43.1"; + date = "2023-08-03"; + url = "https://github.com/fuellabs/sway"; + rev = "923157bcf1dbda7f3a58effcef22fcccd11fcfbc"; + sha256 = "sha256-/Tr9oexI8EyIQdp45VvaHGGlRc5jyK4B0a/8mUrflnI="; +} diff --git a/manifests/forc-migrate-0.43.2.nix b/manifests/forc-migrate-0.43.2.nix new file mode 100644 index 00000000..15706868 --- /dev/null +++ b/manifests/forc-migrate-0.43.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.43.2"; + date = "2023-08-03"; + url = "https://github.com/fuellabs/sway"; + rev = "d8cf6118405164359fdf420c95cd07342e0eca8b"; + sha256 = "sha256-g4u8pGUaxRAZ+t3qo5NamSciWDSeQIKZIORvAUcAFuI="; +} diff --git a/manifests/forc-migrate-0.44.0.nix b/manifests/forc-migrate-0.44.0.nix new file mode 100644 index 00000000..65ff243f --- /dev/null +++ b/manifests/forc-migrate-0.44.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.44.0"; + date = "2023-08-14"; + url = "https://github.com/fuellabs/sway"; + rev = "241d30f7cde5cdd1f378eb2bc1daae945f329d0c"; + sha256 = "sha256-xYpxwBARtWVgLm9yN50/5olOJ8smGCPYZY8kVbrxXuI="; +} diff --git a/manifests/forc-migrate-0.44.1.nix b/manifests/forc-migrate-0.44.1.nix new file mode 100644 index 00000000..6acfe9b8 --- /dev/null +++ b/manifests/forc-migrate-0.44.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.44.1"; + date = "2023-08-16"; + url = "https://github.com/fuellabs/sway"; + rev = "04a597093e7441898933dd412b8e4dc6ac860cd3"; + sha256 = "sha256-Up8C2e27cM8UYr52jhxA84tNz0CeFpLepH7A/l025v4="; +} diff --git a/manifests/forc-migrate-0.45.0.nix b/manifests/forc-migrate-0.45.0.nix new file mode 100644 index 00000000..6179843b --- /dev/null +++ b/manifests/forc-migrate-0.45.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.45.0"; + date = "2023-08-25"; + url = "https://github.com/fuellabs/sway"; + rev = "92dc9f361a9508a940c0d0708130f26fa044f6b3"; + sha256 = "sha256-NUuym7X6HslAVjdq7kPTidzuXlGth+YPY2LBuiokIkw="; +} diff --git a/manifests/forc-migrate-0.46.0.nix b/manifests/forc-migrate-0.46.0.nix new file mode 100644 index 00000000..3ae09488 --- /dev/null +++ b/manifests/forc-migrate-0.46.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.46.0"; + date = "2023-09-14"; + url = "https://github.com/fuellabs/sway"; + rev = "e75f14b03636bc96751a6760304a1a6d3eb5937d"; + sha256 = "sha256-mTqo8B7XUbherC9XBpDtlEtjewCxEzn6yC2kmiCFjVI="; +} diff --git a/manifests/forc-migrate-0.46.1.nix b/manifests/forc-migrate-0.46.1.nix new file mode 100644 index 00000000..79fc21a0 --- /dev/null +++ b/manifests/forc-migrate-0.46.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.46.1"; + date = "2023-09-28"; + url = "https://github.com/fuellabs/sway"; + rev = "512a3386f8961185188302f391ccc96553d23a7a"; + sha256 = "sha256-pqoyYzUCeyBL0dy0uCSqaMxcR+yqu7ZBUNIMuyQy0EY="; +} diff --git a/manifests/forc-migrate-0.47.0.nix b/manifests/forc-migrate-0.47.0.nix new file mode 100644 index 00000000..5bfbef74 --- /dev/null +++ b/manifests/forc-migrate-0.47.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.47.0"; + date = "2023-11-06"; + url = "https://github.com/fuellabs/sway"; + rev = "34265301c6037d51444899a99df1cfc563df6016"; + sha256 = "sha256-lsYDHU3In4tSL8nof1iA+dXemVMP3v56kDJJ+/Tj79A="; +} diff --git a/manifests/forc-migrate-0.48.0.nix b/manifests/forc-migrate-0.48.0.nix new file mode 100644 index 00000000..3e4e2698 --- /dev/null +++ b/manifests/forc-migrate-0.48.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.48.0"; + date = "2023-12-06"; + url = "https://github.com/fuellabs/sway"; + rev = "e451140ce0a804e00de7936d2f569f1df3ec7b21"; + sha256 = "sha256-gSkH4a213nmk3Tt7UeTBpViLiQnJetVJYekMi/hJEWI="; +} diff --git a/manifests/forc-migrate-0.48.1.nix b/manifests/forc-migrate-0.48.1.nix new file mode 100644 index 00000000..96d22104 --- /dev/null +++ b/manifests/forc-migrate-0.48.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.48.1"; + date = "2023-12-06"; + url = "https://github.com/fuellabs/sway"; + rev = "6886ef050ce62afd3fe3186ed562fd33bd76bffa"; + sha256 = "sha256-qVwtmDqAut7C0Cx0fngAxXpDOIsMV20xx0Hl8cDw4Dg="; +} diff --git a/manifests/forc-migrate-0.49.0.nix b/manifests/forc-migrate-0.49.0.nix new file mode 100644 index 00000000..367cac38 --- /dev/null +++ b/manifests/forc-migrate-0.49.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.49.0"; + date = "2024-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "a17fbf3e7d8dc9845458260c343b4d8f006f3633"; + sha256 = "sha256-kNy0O+DO9Xnlv41+gTzELqTaKfaYTkghy+wsLFiHm0Q="; +} diff --git a/manifests/forc-migrate-0.49.1.nix b/manifests/forc-migrate-0.49.1.nix new file mode 100644 index 00000000..5096d101 --- /dev/null +++ b/manifests/forc-migrate-0.49.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.49.1"; + date = "2024-01-19"; + url = "https://github.com/fuellabs/sway"; + rev = "2ac7030570f22510b0ac2a7b5ddf7baa20bdc0e1"; + sha256 = "sha256-XPcInwiDCSlwOt5VMYEH3g3hY/o9VvHVvL1q25x2Fkg="; +} diff --git a/manifests/forc-migrate-0.49.2.nix b/manifests/forc-migrate-0.49.2.nix new file mode 100644 index 00000000..7cab6e41 --- /dev/null +++ b/manifests/forc-migrate-0.49.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.49.2"; + date = "2024-02-02"; + url = "https://github.com/fuellabs/sway"; + rev = "a70c746d27b3300beef896ccd1dcce1299836192"; + sha256 = "sha256-R07m9fTIbsJURYmH1HVFTK87rwp0JwYHnD+vrHH8LTw="; +} diff --git a/manifests/forc-migrate-0.49.3-patch.1.nix b/manifests/forc-migrate-0.49.3-patch.1.nix new file mode 100644 index 00000000..d268c3ad --- /dev/null +++ b/manifests/forc-migrate-0.49.3-patch.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.49.3-patch.1"; + date = "2024-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "0dc6570377ee9c4a6359ade597fa27351e02a728"; + sha256 = "sha256-wqNERqRNtL0OfQPoJqLDFBB8bMiyA1TIAkTpsdPqrAQ="; +} diff --git a/manifests/forc-migrate-0.49.3.nix b/manifests/forc-migrate-0.49.3.nix new file mode 100644 index 00000000..bef848c1 --- /dev/null +++ b/manifests/forc-migrate-0.49.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.49.3"; + date = "2024-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "0dc6570377ee9c4a6359ade597fa27351e02a728"; + sha256 = "sha256-wqNERqRNtL0OfQPoJqLDFBB8bMiyA1TIAkTpsdPqrAQ="; +} diff --git a/manifests/forc-migrate-0.5.0.nix b/manifests/forc-migrate-0.5.0.nix new file mode 100644 index 00000000..0be3ed31 --- /dev/null +++ b/manifests/forc-migrate-0.5.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.5.0"; + date = "2022-02-28"; + url = "https://github.com/fuellabs/sway"; + rev = "5c58c09ffba1719b187a3e1112639eec649eab5e"; + sha256 = "sha256-11OIZruYjYrylHv8zQOfLW9Fzs0p7aGOWQfq7UQN+5w="; +} diff --git a/manifests/forc-migrate-0.50.0.nix b/manifests/forc-migrate-0.50.0.nix new file mode 100644 index 00000000..6f8cc036 --- /dev/null +++ b/manifests/forc-migrate-0.50.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.50.0"; + date = "2024-02-07"; + url = "https://github.com/fuellabs/sway"; + rev = "11231184a073a3e9c179d1d2e68c90d205638d45"; + sha256 = "sha256-C3iFrYeTRgfodJjhHL5LlT++2vu0qW9aAQ40T0ixc9I="; +} diff --git a/manifests/forc-migrate-0.51.0.nix b/manifests/forc-migrate-0.51.0.nix new file mode 100644 index 00000000..f705cec9 --- /dev/null +++ b/manifests/forc-migrate-0.51.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.51.0"; + date = "2024-02-22"; + url = "https://github.com/fuellabs/sway"; + rev = "694457da6a507ecee047c1ef8a5865ef4cc07147"; + sha256 = "sha256-tk75ovG3ZxQCe3f13LNLxiBcQT9nf4ZuoIaip0RQgLQ="; +} diff --git a/manifests/forc-migrate-0.51.1.nix b/manifests/forc-migrate-0.51.1.nix new file mode 100644 index 00000000..f753bfaa --- /dev/null +++ b/manifests/forc-migrate-0.51.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.51.1"; + date = "2024-02-23"; + url = "https://github.com/fuellabs/sway"; + rev = "d1e8f019c1da46273c3d3a72b385ce356ba2bc20"; + sha256 = "sha256-bFuBpcZE0CZGmm5wWURhTIZaVSHxL1e0Bs57UhGZWTI="; +} diff --git a/manifests/forc-migrate-0.52.0.nix b/manifests/forc-migrate-0.52.0.nix new file mode 100644 index 00000000..ef8168d9 --- /dev/null +++ b/manifests/forc-migrate-0.52.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.52.0"; + date = "2024-03-27"; + url = "https://github.com/fuellabs/sway"; + rev = "98d8f4cadbac34f232926b9a44b1170ec9da425d"; + sha256 = "sha256-toAWqJlcXknCUsU1+sQefUZKtFdwrBFmmGL8/5TE8NI="; +} diff --git a/manifests/forc-migrate-0.52.1.nix b/manifests/forc-migrate-0.52.1.nix new file mode 100644 index 00000000..c6979536 --- /dev/null +++ b/manifests/forc-migrate-0.52.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.52.1"; + date = "2024-04-03"; + url = "https://github.com/fuellabs/sway"; + rev = "c1ea517f0522c780ca41120247cde2f450605a3c"; + sha256 = "sha256-PwKDmmPRGMlNqBMrMycdoFFCvBfD6Ly+mimg3AI4sAI="; +} diff --git a/manifests/forc-migrate-0.53.0.nix b/manifests/forc-migrate-0.53.0.nix new file mode 100644 index 00000000..9426f83b --- /dev/null +++ b/manifests/forc-migrate-0.53.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.53.0"; + date = "2024-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "b30f0e83d3f3d336007e3dfce45a48a87e731345"; + sha256 = "sha256-PYr3xSTIhBNC1RDbr2IVp6HjHydURhCS3cyBZB1jhuY="; +} diff --git a/manifests/forc-migrate-0.54.0.nix b/manifests/forc-migrate-0.54.0.nix new file mode 100644 index 00000000..40051a99 --- /dev/null +++ b/manifests/forc-migrate-0.54.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.54.0"; + date = "2024-04-13"; + url = "https://github.com/fuellabs/sway"; + rev = "d90cbc8419e47283519e39046c3ea5616e64df84"; + sha256 = "sha256-bI5+vL8dVpAuRMcrznrYhnMUPpax6Q0iC/w7sps3ims="; +} diff --git a/manifests/forc-migrate-0.55.0.nix b/manifests/forc-migrate-0.55.0.nix new file mode 100644 index 00000000..fe5fe285 --- /dev/null +++ b/manifests/forc-migrate-0.55.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.55.0"; + date = "2024-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "60ea55e692f4f70730b500735e13c29df2ac727e"; + sha256 = "sha256-zfIGerybZgEYDqYIWD5r/iQLJFJTzmvoJKqUqmwwF6Q="; +} diff --git a/manifests/forc-migrate-0.56.0.nix b/manifests/forc-migrate-0.56.0.nix new file mode 100644 index 00000000..74b7732b --- /dev/null +++ b/manifests/forc-migrate-0.56.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.56.0"; + date = "2024-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "b495d0df6956524fd68dab7e062df04d2e581ac3"; + sha256 = "sha256-ag0rl2Q0a+J03SRhj4dh19pbvKVt8PJ83XKkRlDq+vo="; +} diff --git a/manifests/forc-migrate-0.56.1.nix b/manifests/forc-migrate-0.56.1.nix new file mode 100644 index 00000000..2904f030 --- /dev/null +++ b/manifests/forc-migrate-0.56.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.56.1"; + date = "2024-05-08"; + url = "https://github.com/fuellabs/sway"; + rev = "4a63b41de136ab68bdf396c6720708fbf4dca83e"; + sha256 = "sha256-FW8P8+dujrVbUz1YyL+OSzOmpsDy1Ggaf3S6U4fHDtk="; +} diff --git a/manifests/forc-migrate-0.57.0.nix b/manifests/forc-migrate-0.57.0.nix new file mode 100644 index 00000000..4fb1f672 --- /dev/null +++ b/manifests/forc-migrate-0.57.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.57.0"; + date = "2024-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "8148817c02b0015ac3f299a8935f9a73d395a35e"; + sha256 = "sha256-jwTGhefYuJybXizPV/TLWQ60JNGSzyexzYTHk4lVDQU="; +} diff --git a/manifests/forc-migrate-0.58.0.nix b/manifests/forc-migrate-0.58.0.nix new file mode 100644 index 00000000..33cb4f0e --- /dev/null +++ b/manifests/forc-migrate-0.58.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.58.0"; + date = "2024-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "9579dd2f77c8597995d6d7d2995640c26cfb3fe4"; + sha256 = "sha256-3KqSYUixgLALy+eZWxOyjjwJR/mXpdUaygPGdEnSYlA="; +} diff --git a/manifests/forc-migrate-0.59.0.nix b/manifests/forc-migrate-0.59.0.nix new file mode 100644 index 00000000..bb664c68 --- /dev/null +++ b/manifests/forc-migrate-0.59.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.59.0"; + date = "2024-05-17"; + url = "https://github.com/fuellabs/sway"; + rev = "d9985d8111f94235edba9a08fc71a9513ec2a95c"; + sha256 = "sha256-eXTLIonA9dyRCed1vUGsR8nrjq7Dm3T/eKdQ95+iqUs="; +} diff --git a/manifests/forc-migrate-0.6.0.nix b/manifests/forc-migrate-0.6.0.nix new file mode 100644 index 00000000..87720a3a --- /dev/null +++ b/manifests/forc-migrate-0.6.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.6.0"; + date = "2022-03-07"; + url = "https://github.com/fuellabs/sway"; + rev = "35e5a2f12e137953b82470e9637e4969ca064e4a"; + sha256 = "sha256-HKmNBduWtyIoaUwkj2Nu9GznUOoZFctcaRhFJOnTWLY="; +} diff --git a/manifests/forc-migrate-0.6.1.nix b/manifests/forc-migrate-0.6.1.nix new file mode 100644 index 00000000..a49463bc --- /dev/null +++ b/manifests/forc-migrate-0.6.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.6.1"; + date = "2022-03-10"; + url = "https://github.com/fuellabs/sway"; + rev = "3268092ce50e5058b11a5ea2e7f35c6e19352d68"; + sha256 = "sha256-JOH4UosK8x7FmMqx2qkEqWnyO+z9XPl1C/BrnXWz4uw="; +} diff --git a/manifests/forc-migrate-0.60.0.nix b/manifests/forc-migrate-0.60.0.nix new file mode 100644 index 00000000..7832e573 --- /dev/null +++ b/manifests/forc-migrate-0.60.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.60.0"; + date = "2024-05-22"; + url = "https://github.com/fuellabs/sway"; + rev = "2f0392ee35a1e4dd80bd8034962d5b4083dfb8b6"; + sha256 = "sha256-2y1wRiRnY8Z5lgnIeu6BYQFVtJPHmDpaeHZVceeqjiA="; +} diff --git a/manifests/forc-migrate-0.61.0.nix b/manifests/forc-migrate-0.61.0.nix new file mode 100644 index 00000000..0446af9c --- /dev/null +++ b/manifests/forc-migrate-0.61.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.61.0"; + date = "2024-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "4b4fb53eb2ef3390a0186a7048b060ff8e973a15"; + sha256 = "sha256-lM9Hzl70uO/QtOhDf6hN4ulOFSo9M5UaVTK22Y6rjJc="; +} diff --git a/manifests/forc-migrate-0.61.1.nix b/manifests/forc-migrate-0.61.1.nix new file mode 100644 index 00000000..0913c76f --- /dev/null +++ b/manifests/forc-migrate-0.61.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.61.1"; + date = "2024-07-02"; + url = "https://github.com/fuellabs/sway"; + rev = "d86bb863697550b76f9209894e7a4ed84d1a8f39"; + sha256 = "sha256-O/KRqfnTeS2Z01GvCiCzu/Iwg/ccC+Tp/MO9mjY9wf0="; +} diff --git a/manifests/forc-migrate-0.61.2.nix b/manifests/forc-migrate-0.61.2.nix new file mode 100644 index 00000000..5515ef53 --- /dev/null +++ b/manifests/forc-migrate-0.61.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.61.2"; + date = "2024-07-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e1b1c2bee73e0ba825e07736cefa6c0abd079595"; + sha256 = "sha256-HOmwpzWp02DkXK+wiL2vCvuOKdFQNlPEvxMLGgfL11I="; +} diff --git a/manifests/forc-migrate-0.62.0.nix b/manifests/forc-migrate-0.62.0.nix new file mode 100644 index 00000000..3fa38c62 --- /dev/null +++ b/manifests/forc-migrate-0.62.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.62.0"; + date = "2024-07-18"; + url = "https://github.com/fuellabs/sway"; + rev = "efda0397c7bee77de73bd726ec0b732d57614973"; + sha256 = "sha256-24306qdH3UupJ8iGYcCAJRmWow7o/0e1ym7htSRPTjE="; +} diff --git a/manifests/forc-migrate-0.63.0.nix b/manifests/forc-migrate-0.63.0.nix new file mode 100644 index 00000000..3800ca28 --- /dev/null +++ b/manifests/forc-migrate-0.63.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.63.0"; + date = "2024-08-19"; + url = "https://github.com/fuellabs/sway"; + rev = "da9b3230706bfbe6e4efec179b7ddc0322909b57"; + sha256 = "sha256-P5zhjVT5uwYcdprPN6gZ6UbiML0KLkw4CwNOkBlCIAE="; +} diff --git a/manifests/forc-migrate-0.63.1.nix b/manifests/forc-migrate-0.63.1.nix new file mode 100644 index 00000000..a1ea74e1 --- /dev/null +++ b/manifests/forc-migrate-0.63.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.63.1"; + date = "2024-08-19"; + url = "https://github.com/fuellabs/sway"; + rev = "169f91ae0a6a698bd1cb459c4c203bab646a38ec"; + sha256 = "sha256-/9medkNesN+JuYEBasGDmhzZEMeCC4PVh2VKrTkb8NI="; +} diff --git a/manifests/forc-migrate-0.63.2.nix b/manifests/forc-migrate-0.63.2.nix new file mode 100644 index 00000000..622784a3 --- /dev/null +++ b/manifests/forc-migrate-0.63.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.63.2"; + date = "2024-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "a9e83955bcb50aa1a8b95d04235066b3dd34c9c4"; + sha256 = "sha256-mCFw0F0HC4hrNUdnfMePO1DSWQE/CvKpXbdMwbq4RQQ="; +} diff --git a/manifests/forc-migrate-0.63.3.nix b/manifests/forc-migrate-0.63.3.nix new file mode 100644 index 00000000..383a1edf --- /dev/null +++ b/manifests/forc-migrate-0.63.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.63.3"; + date = "2024-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "f55c81cce61aac31913ac0e87306cbaed7da679a"; + sha256 = "sha256-SLdimVN0rjpKrWcAF3Kg3+DgyGT/zbkvePIdZrayH6Q="; +} diff --git a/manifests/forc-migrate-0.63.4.nix b/manifests/forc-migrate-0.63.4.nix new file mode 100644 index 00000000..cd8e1d25 --- /dev/null +++ b/manifests/forc-migrate-0.63.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.63.4"; + date = "2024-09-05"; + url = "https://github.com/fuellabs/sway"; + rev = "2538442a67f893f2e878214ba37a11b51f4ed41e"; + sha256 = "sha256-TA4HerMYUBunE+wyPwYS3z9ziSThJdEAcX81Hx8VZSI="; +} diff --git a/manifests/forc-migrate-0.63.5.nix b/manifests/forc-migrate-0.63.5.nix new file mode 100644 index 00000000..84168a3a --- /dev/null +++ b/manifests/forc-migrate-0.63.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.63.5"; + date = "2024-09-06"; + url = "https://github.com/fuellabs/sway"; + rev = "31a1d6f98395f571cd3674b492d9bf4773c55f65"; + sha256 = "sha256-WZkfaz+4mU3TydLoBxoaKdzMCLPq8hISg0GCmFujuh4="; +} diff --git a/manifests/forc-migrate-0.63.6.nix b/manifests/forc-migrate-0.63.6.nix new file mode 100644 index 00000000..9cbb428b --- /dev/null +++ b/manifests/forc-migrate-0.63.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.63.6"; + date = "2024-09-18"; + url = "https://github.com/fuellabs/sway"; + rev = "cba9a005ef2a5b61e13eb02ba6e9e93ebd19a31a"; + sha256 = "sha256-9JH/vWzDBAMENzp7gFtSrP68AimsrmqfEhRaS6Aw6TM="; +} diff --git a/manifests/forc-migrate-0.64.0.nix b/manifests/forc-migrate-0.64.0.nix new file mode 100644 index 00000000..b4d0df00 --- /dev/null +++ b/manifests/forc-migrate-0.64.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.64.0"; + date = "2024-09-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2156bfbbee01ffb85bfca2aae8f185f8e7c715a4"; + sha256 = "sha256-HtzITm4CMH3td35GSGTCzcBzUSjzH/TAu7SwEzjbA3c="; +} diff --git a/manifests/forc-migrate-0.65.0.nix b/manifests/forc-migrate-0.65.0.nix new file mode 100644 index 00000000..4082ca7e --- /dev/null +++ b/manifests/forc-migrate-0.65.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.65.0"; + date = "2024-10-06"; + url = "https://github.com/fuellabs/sway"; + rev = "32d1cc91dc3cf8fbda12fe217e563b139feef8a7"; + sha256 = "sha256-Et4e/N8pKQdrMH9g5ZrAqsk++2n40mv/iTVx4p5PuUM="; +} diff --git a/manifests/forc-migrate-0.65.1.nix b/manifests/forc-migrate-0.65.1.nix new file mode 100644 index 00000000..b82221c7 --- /dev/null +++ b/manifests/forc-migrate-0.65.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.65.1"; + date = "2024-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3a9c171cd43611d7ccad94ab66a5093c6634717b"; + sha256 = "sha256-6KoM3dIOS+6HJ8/mfQtzeX8efrRc3EjcXpU32RAmXiU="; +} diff --git a/manifests/forc-migrate-0.65.2.nix b/manifests/forc-migrate-0.65.2.nix new file mode 100644 index 00000000..858cda27 --- /dev/null +++ b/manifests/forc-migrate-0.65.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.65.2"; + date = "2024-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "66bb430395daf5b8f7205f7b9d8d008e2e812d54"; + sha256 = "sha256-J1/9pvWYBdZY4vPd9T0MGsg2g6OtZQG4KWk8QlKVtG8="; +} diff --git a/manifests/forc-migrate-0.66.0.nix b/manifests/forc-migrate-0.66.0.nix new file mode 100644 index 00000000..f5cd4988 --- /dev/null +++ b/manifests/forc-migrate-0.66.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.0"; + date = "2024-10-15"; + url = "https://github.com/fuellabs/sway"; + rev = "b7e59f42aebed08c2e015cbd5d0776c8953fc57f"; + sha256 = "sha256-9iIlZi2eMIcyGylR9mkXANaBcfOJk308f3DArLwjDGM="; +} diff --git a/manifests/forc-migrate-0.66.1.nix b/manifests/forc-migrate-0.66.1.nix new file mode 100644 index 00000000..85329362 --- /dev/null +++ b/manifests/forc-migrate-0.66.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.1"; + date = "2024-10-15"; + url = "https://github.com/fuellabs/sway"; + rev = "d5662c6bd0e5519446aa1b3ebb6af703025accec"; + sha256 = "sha256-Uf8qe94rUZhInAM/o0ue/W5vNW1bpubqYaWt6OVE2Aw="; +} diff --git a/manifests/forc-migrate-0.66.10.nix b/manifests/forc-migrate-0.66.10.nix new file mode 100644 index 00000000..86e3a1e9 --- /dev/null +++ b/manifests/forc-migrate-0.66.10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.10"; + date = "2025-03-11"; + url = "https://github.com/fuellabs/sway"; + rev = "6c00a44822ce2bec4d0754ef285566a8b8de72fb"; + sha256 = "sha256-cfFsArmLkpXUvwO3Jf3KkFYU7MmMyxEbVUEsUvzZtpA="; +} diff --git a/manifests/forc-migrate-0.66.2.nix b/manifests/forc-migrate-0.66.2.nix new file mode 100644 index 00000000..05d91efc --- /dev/null +++ b/manifests/forc-migrate-0.66.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.2"; + date = "2024-10-16"; + url = "https://github.com/fuellabs/sway"; + rev = "31486c0b47669612acb7c64d66ecb50aea281282"; + sha256 = "sha256-k/53TarSPDFgljkqMb41ecV+aiqWDNwzZRBoPk4Itps="; +} diff --git a/manifests/forc-migrate-0.66.3.nix b/manifests/forc-migrate-0.66.3.nix new file mode 100644 index 00000000..750cd9eb --- /dev/null +++ b/manifests/forc-migrate-0.66.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.3"; + date = "2024-10-30"; + url = "https://github.com/fuellabs/sway"; + rev = "5b7d720cf97e88eedc3c069b617ee7493bb16637"; + sha256 = "sha256-35bHX4r/WB3peaTJ5qK2TV3xRtxx5nBxUpDA+4oOlm4="; +} diff --git a/manifests/forc-migrate-0.66.4.nix b/manifests/forc-migrate-0.66.4.nix new file mode 100644 index 00000000..4fb6c4ad --- /dev/null +++ b/manifests/forc-migrate-0.66.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.4"; + date = "2024-11-03"; + url = "https://github.com/fuellabs/sway"; + rev = "d7dd104dac4394aa7af56f05b720c975744db853"; + sha256 = "sha256-lpX7PSEE+glDj7284dRC7KtU4yIfjRnQZnySaTL+AQc="; +} diff --git a/manifests/forc-migrate-0.66.5.nix b/manifests/forc-migrate-0.66.5.nix new file mode 100644 index 00000000..0a53f223 --- /dev/null +++ b/manifests/forc-migrate-0.66.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.5"; + date = "2024-11-21"; + url = "https://github.com/fuellabs/sway"; + rev = "94a066652468b4afa3bd396dacef482ed590976b"; + sha256 = "sha256-+8fwP6jkBr5hyzDBZmcAXDq8ciu5PrsZDmDrA8gEzA0="; +} diff --git a/manifests/forc-migrate-0.66.6.nix b/manifests/forc-migrate-0.66.6.nix new file mode 100644 index 00000000..31373a81 --- /dev/null +++ b/manifests/forc-migrate-0.66.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.6"; + date = "2025-01-23"; + url = "https://github.com/fuellabs/sway"; + rev = "986aee2c1e34c9cd958c81e7fd6b84638b26619b"; + sha256 = "sha256-O4pyhoFbxQ5O00OH8DZZTns3l4QGGFvr3gmqanToMD8="; +} diff --git a/manifests/forc-migrate-0.66.7.nix b/manifests/forc-migrate-0.66.7.nix new file mode 100644 index 00000000..ccd452ab --- /dev/null +++ b/manifests/forc-migrate-0.66.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.7"; + date = "2025-02-05"; + url = "https://github.com/fuellabs/sway"; + rev = "5ed7cec6dbcd42f0c2f84df8511a4c0007b1902e"; + sha256 = "sha256-xuyG/6Kkr4w1lKTb4VkdC/zf5+RaC9HfgOYcsJmV2sc="; +} diff --git a/manifests/forc-migrate-0.66.8.nix b/manifests/forc-migrate-0.66.8.nix new file mode 100644 index 00000000..546e9874 --- /dev/null +++ b/manifests/forc-migrate-0.66.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.8"; + date = "2025-03-05"; + url = "https://github.com/fuellabs/sway"; + rev = "ba46576c8601aadf23532de001375879f72f109b"; + sha256 = "sha256-95FNf10T4HmIV2Uj6hHps4SQduIKS7pMEeTgaVxSKQk="; +} diff --git a/manifests/forc-migrate-0.66.9.nix b/manifests/forc-migrate-0.66.9.nix new file mode 100644 index 00000000..d8fc8814 --- /dev/null +++ b/manifests/forc-migrate-0.66.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.66.9"; + date = "2025-03-11"; + url = "https://github.com/fuellabs/sway"; + rev = "ef377e78bf597ea3b324f6b021a105b232d1cd98"; + sha256 = "sha256-3yeZrK2+x+apfQ7GyebOT65TgPNqrwB7Wsr+dve6H0Q="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-01.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-01.nix new file mode 100644 index 00000000..1461afcb --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-01"; + url = "https://github.com/fuellabs/sway"; + rev = "4eb0705fce706299c8d2efcf967edd58a9679fca"; + sha256 = "sha256-+w495nHeddHIj3hBbl34nE3nnFuEtUZEDefV3uqhyJQ="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-02.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-02.nix new file mode 100644 index 00000000..d1566368 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-02"; + url = "https://github.com/fuellabs/sway"; + rev = "34aa19ca86fe1b5b5eea87ef0d13708bd62796c2"; + sha256 = "sha256-W3cgYBZ16gmKjHniHklMcaHJqQ2VgK+89uUs217uBP8="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-03.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-03.nix new file mode 100644 index 00000000..02c7a1cd --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-03"; + url = "https://github.com/fuellabs/sway"; + rev = "c1b63c87b21452d51d2b3244328d1ca9cb9dc3ef"; + sha256 = "sha256-wf0YdiVZM+lPcm3rN3TxIfz/uesiElQ0BAec2iktleE="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-04.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-04.nix new file mode 100644 index 00000000..a3506c66 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-04"; + url = "https://github.com/fuellabs/sway"; + rev = "f11c5cd6cdff86b1bd106cd0fb86604a5d350720"; + sha256 = "sha256-Xjr1c1HAqytooSuDLvtVIoCo1xGB8sxl2O2MNCCcfUY="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-05.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-05.nix new file mode 100644 index 00000000..06ba6d82 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "8e162c9661fb566255cad6113a8cfcda8d7d7dca"; + sha256 = "sha256-NojfLZBf5CSPp7JQvgiG1GWfsF9DCYUt5uufOEQJzf8="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-08.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-08.nix new file mode 100644 index 00000000..8dbd45a3 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-08"; + url = "https://github.com/fuellabs/sway"; + rev = "b59e1b627d0e8f1f904c28d681ccc66cf2830542"; + sha256 = "sha256-8aMBJhA+64WeAh+JEOkFvAG2F1xI6mBiC7D8ZDOkrrA="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-09.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-09.nix new file mode 100644 index 00000000..84a10e64 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-09"; + url = "https://github.com/fuellabs/sway"; + rev = "1c68f1c9e0cc7ec34a7195e11d92891290aaa8de"; + sha256 = "sha256-m9c+pCaoYwWLQi7cDuMLJm7xqI1PFs/bJ6X/8JN0Wbg="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-10.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-10.nix new file mode 100644 index 00000000..066e876f --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-10"; + url = "https://github.com/fuellabs/sway"; + rev = "4d18d527495483af3c7d81543da347cfaa236147"; + sha256 = "sha256-sMQnl/QZVpkJnOsYDw322ERey+SNB9Fe4nev4Wk/Fro="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-11.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-11.nix new file mode 100644 index 00000000..5d467169 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "ba3a0d56352ed7a95c7f901ab094954d003e7098"; + sha256 = "sha256-AyhTCZke7FbmJn5O53ZElsUXsQqvfLyf2J7uvluqoNo="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-14.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-14.nix new file mode 100644 index 00000000..5323d2de --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-14"; + url = "https://github.com/fuellabs/sway"; + rev = "f4477cfb909e6d153133df352c147d4ee2ad6f3f"; + sha256 = "sha256-vIoJ8iW3NC278+VnhaSwb7GrcBGIdHmLsbWc6Y53RL0="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-15.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-15.nix new file mode 100644 index 00000000..490e4bec --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-15"; + url = "https://github.com/fuellabs/sway"; + rev = "8c132f1b56afa491e044147c647bec1059c9ef81"; + sha256 = "sha256-nUp9I2y6b8BVKdlVUD0PWOKrMo0CJynSyyZxd3saav4="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-16.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-16.nix new file mode 100644 index 00000000..4fd6e5f8 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-16.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-16"; + url = "https://github.com/fuellabs/sway"; + rev = "ddec15af093f6be7f0ef983dbd1040764c7e2bf8"; + sha256 = "sha256-JLTmnhL1eLG7iynyr0ulHqOllmJH9sdFqb/24KZJeIE="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-17.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-17.nix new file mode 100644 index 00000000..c95744e1 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-17.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-17"; + url = "https://github.com/fuellabs/sway"; + rev = "8c2af95cc36dc034a4e21669ae6b8d5e49eadbca"; + sha256 = "sha256-P0LOySjweT23bu4xycNzUZv6D18IGglouTRERecGDEg="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-18.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-18.nix new file mode 100644 index 00000000..b4d34be6 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "3afc5c18c87b82ac00ffd38a81de01d534af087b"; + sha256 = "sha256-+MWlXlp7dJXv8gY+qZ8wNvxa8U9u7J1Uhlxl654uw8A="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-20.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-20.nix new file mode 100644 index 00000000..adad7964 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-20"; + url = "https://github.com/fuellabs/sway"; + rev = "7cb78097d0bfbed1e3196639c2aff50a2c02666b"; + sha256 = "sha256-FznW8ID2ykfvqBkCRn96vC3hharM6SWoX6VUpv6OxIM="; +} diff --git a/manifests/forc-migrate-0.67.0-nightly-2025-04-22.nix b/manifests/forc-migrate-0.67.0-nightly-2025-04-22.nix new file mode 100644 index 00000000..b7869d71 --- /dev/null +++ b/manifests/forc-migrate-0.67.0-nightly-2025-04-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-04-22"; + url = "https://github.com/fuellabs/sway"; + rev = "f607a674e303bc497887beab06f022127cfd67b7"; + sha256 = "sha256-ABQBvGxHTZX5KzSzg+VXUIVZShBRuSVTDq742WP/Q5I="; +} diff --git a/manifests/forc-migrate-0.67.0.nix b/manifests/forc-migrate-0.67.0.nix new file mode 100644 index 00000000..49d2c633 --- /dev/null +++ b/manifests/forc-migrate-0.67.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.0"; + date = "2025-03-13"; + url = "https://github.com/fuellabs/sway"; + rev = "d821dcb0c7edb1d6e2a772f5a1ccefe38902eaec"; + sha256 = "sha256-PgElgNdhBb/moj5GTMT+uwhWMDOdPzRe37y4V7MTIYc="; +} diff --git a/manifests/forc-migrate-0.67.1-nightly-2025-04-23.nix b/manifests/forc-migrate-0.67.1-nightly-2025-04-23.nix new file mode 100644 index 00000000..6a15d745 --- /dev/null +++ b/manifests/forc-migrate-0.67.1-nightly-2025-04-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.1"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "6a896339a688eb4e0ddb2e966e8164f05742ca71"; + sha256 = "sha256-WUkC6JVB1NGHXXvmkHqkhzZ4K+ezhsvpVdqlvAQ3REM="; +} diff --git a/manifests/forc-migrate-0.67.1.nix b/manifests/forc-migrate-0.67.1.nix new file mode 100644 index 00000000..99368f54 --- /dev/null +++ b/manifests/forc-migrate-0.67.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.1"; + date = "2025-04-22"; + url = "https://github.com/fuellabs/sway"; + rev = "6a896339a688eb4e0ddb2e966e8164f05742ca71"; + sha256 = "sha256-WUkC6JVB1NGHXXvmkHqkhzZ4K+ezhsvpVdqlvAQ3REM="; +} diff --git a/manifests/forc-migrate-0.67.2.nix b/manifests/forc-migrate-0.67.2.nix new file mode 100644 index 00000000..7325114f --- /dev/null +++ b/manifests/forc-migrate-0.67.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.67.2"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "58a77073382e6992a40f21ed89dc4ea4d46010b1"; + sha256 = "sha256-BcTIuM6CazfMsjmubcuFsL0KC5JaVHyYn2UawLiyosc="; +} diff --git a/manifests/forc-migrate-0.68.0-nightly-2025-04-24.nix b/manifests/forc-migrate-0.68.0-nightly-2025-04-24.nix new file mode 100644 index 00000000..1d1b660e --- /dev/null +++ b/manifests/forc-migrate-0.68.0-nightly-2025-04-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.0"; + date = "2025-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "cbe8005a2388ec481d557aa4a58d7df96be9cad0"; + sha256 = "sha256-Oqp9k6fdhu0jIn/OTcZYwFRGOoL4neFmNkDkS48Nsc0="; +} diff --git a/manifests/forc-migrate-0.68.0.nix b/manifests/forc-migrate-0.68.0.nix new file mode 100644 index 00000000..91cec954 --- /dev/null +++ b/manifests/forc-migrate-0.68.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.0"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "cbe8005a2388ec481d557aa4a58d7df96be9cad0"; + sha256 = "sha256-Oqp9k6fdhu0jIn/OTcZYwFRGOoL4neFmNkDkS48Nsc0="; +} diff --git a/manifests/forc-migrate-0.68.1-nightly-2025-04-25.nix b/manifests/forc-migrate-0.68.1-nightly-2025-04-25.nix new file mode 100644 index 00000000..2ddbe48f --- /dev/null +++ b/manifests/forc-migrate-0.68.1-nightly-2025-04-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.1"; + date = "2025-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "5f999595d377c2de6111836249614bae031d562e"; + sha256 = "sha256-Zfm1ImQ7w8igCFcXduW9rZ2etU/femHbxwPdVNd6/5s="; +} diff --git a/manifests/forc-migrate-0.68.1-nightly-2025-04-26.nix b/manifests/forc-migrate-0.68.1-nightly-2025-04-26.nix new file mode 100644 index 00000000..9b63a05f --- /dev/null +++ b/manifests/forc-migrate-0.68.1-nightly-2025-04-26.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.1"; + date = "2025-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "eb57cbf2849ed118f8f403954b545fd4d08a3643"; + sha256 = "sha256-w0r9OpTG1gSYk8xx53VLqA5fP6MzPJ6IWsHQdqwwhis="; +} diff --git a/manifests/forc-migrate-0.68.1-nightly-2025-04-29.nix b/manifests/forc-migrate-0.68.1-nightly-2025-04-29.nix new file mode 100644 index 00000000..6b33323f --- /dev/null +++ b/manifests/forc-migrate-0.68.1-nightly-2025-04-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.1"; + date = "2025-04-29"; + url = "https://github.com/fuellabs/sway"; + rev = "76268dcff70744288297a778aae46df77eb5a2a7"; + sha256 = "sha256-7EEPnkERP5rkcekMiBMP8kmh6oBIcCP+NiNn5aGWKCE="; +} diff --git a/manifests/forc-migrate-0.68.1-nightly-2025-04-30.nix b/manifests/forc-migrate-0.68.1-nightly-2025-04-30.nix new file mode 100644 index 00000000..3e997fd1 --- /dev/null +++ b/manifests/forc-migrate-0.68.1-nightly-2025-04-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.1"; + date = "2025-04-30"; + url = "https://github.com/fuellabs/sway"; + rev = "26e2ef875c10d7bab696c28f2127073422a7da15"; + sha256 = "sha256-qKjgPESiwmz9ZC6rOIvVAsiFkkrc6FBSMC3xwkFZghA="; +} diff --git a/manifests/forc-migrate-0.68.1-nightly-2025-05-01.nix b/manifests/forc-migrate-0.68.1-nightly-2025-05-01.nix new file mode 100644 index 00000000..2281cc91 --- /dev/null +++ b/manifests/forc-migrate-0.68.1-nightly-2025-05-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.1"; + date = "2025-05-01"; + url = "https://github.com/fuellabs/sway"; + rev = "42321ef0e0eef3e4de690759d3d197a21a8a7aa0"; + sha256 = "sha256-tOjGwpoTNuRQvApDngxGrDHDAdao8p8mQ3VVbBJ4Arg="; +} diff --git a/manifests/forc-migrate-0.68.1.nix b/manifests/forc-migrate-0.68.1.nix new file mode 100644 index 00000000..b6c5db32 --- /dev/null +++ b/manifests/forc-migrate-0.68.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.1"; + date = "2025-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "7e1bc152face6f1ae20b4274d98446100920e573"; + sha256 = "sha256-ME7GHU+Y9nrVJiI6OaHMyyPcPQYB57afi4/TAmx1Mcs="; +} diff --git a/manifests/forc-migrate-0.68.2-nightly-2025-05-02.nix b/manifests/forc-migrate-0.68.2-nightly-2025-05-02.nix new file mode 100644 index 00000000..b53746be --- /dev/null +++ b/manifests/forc-migrate-0.68.2-nightly-2025-05-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.2"; + date = "2025-05-02"; + url = "https://github.com/fuellabs/sway"; + rev = "05480bb07ed7b62e4123a2696ba22bce57ffb049"; + sha256 = "sha256-12BK6qvONpLLM37jGY0lDfhHN+JT5TgjQfIueJrkY9E="; +} diff --git a/manifests/forc-migrate-0.68.2-nightly-2025-05-03.nix b/manifests/forc-migrate-0.68.2-nightly-2025-05-03.nix new file mode 100644 index 00000000..721419e7 --- /dev/null +++ b/manifests/forc-migrate-0.68.2-nightly-2025-05-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.2"; + date = "2025-05-03"; + url = "https://github.com/fuellabs/sway"; + rev = "324f04fbab358a8e7eb729d03e0293605755ba5a"; + sha256 = "sha256-0gh3Yi3GUWf6QmXUtVPyIzJd8MjGBJtI5qLUu40txHM="; +} diff --git a/manifests/forc-migrate-0.68.2-nightly-2025-05-06.nix b/manifests/forc-migrate-0.68.2-nightly-2025-05-06.nix new file mode 100644 index 00000000..cbc9a5d7 --- /dev/null +++ b/manifests/forc-migrate-0.68.2-nightly-2025-05-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.2"; + date = "2025-05-06"; + url = "https://github.com/fuellabs/sway"; + rev = "804d6df0d9c950dbdfc887e2ca6dc39be3abc23a"; + sha256 = "sha256-ioawcNFkhCeo0rMk5xL0gABv7ipkeWha35fS9Z6vlqc="; +} diff --git a/manifests/forc-migrate-0.68.2-nightly-2025-05-07.nix b/manifests/forc-migrate-0.68.2-nightly-2025-05-07.nix new file mode 100644 index 00000000..fa578e82 --- /dev/null +++ b/manifests/forc-migrate-0.68.2-nightly-2025-05-07.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.2"; + date = "2025-05-07"; + url = "https://github.com/fuellabs/sway"; + rev = "f635cc22ead32fedc2e0bcb1ed43f51f1c63090f"; + sha256 = "sha256-D6iuParzkjmyMjrUHmemvdtQgbaSaWeFhxQgvwKNhDQ="; +} diff --git a/manifests/forc-migrate-0.68.2-nightly-2025-05-08.nix b/manifests/forc-migrate-0.68.2-nightly-2025-05-08.nix new file mode 100644 index 00000000..5e50b91e --- /dev/null +++ b/manifests/forc-migrate-0.68.2-nightly-2025-05-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.2"; + date = "2025-05-08"; + url = "https://github.com/fuellabs/sway"; + rev = "8fb7a55f2145f2012d2d2df82b790e44a76106a1"; + sha256 = "sha256-Cq9aCSoap1QiqmIDLeqnAP6Uu1vx0A6tsDfD3jVz3W8="; +} diff --git a/manifests/forc-migrate-0.68.2-nightly-2025-05-09.nix b/manifests/forc-migrate-0.68.2-nightly-2025-05-09.nix new file mode 100644 index 00000000..52f87df1 --- /dev/null +++ b/manifests/forc-migrate-0.68.2-nightly-2025-05-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.2"; + date = "2025-05-09"; + url = "https://github.com/fuellabs/sway"; + rev = "bd3813606ad2c4685ae979c7d4443573642c929d"; + sha256 = "sha256-SQX3NYAWZDIGwYpzgx8i+4IWemHPn4Y+L1m4AY7el4Q="; +} diff --git a/manifests/forc-migrate-0.68.2-nightly-2025-05-10.nix b/manifests/forc-migrate-0.68.2-nightly-2025-05-10.nix new file mode 100644 index 00000000..4d230361 --- /dev/null +++ b/manifests/forc-migrate-0.68.2-nightly-2025-05-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.2"; + date = "2025-05-10"; + url = "https://github.com/fuellabs/sway"; + rev = "dffa29c5994988a2f7202793363c91a9e9476ee9"; + sha256 = "sha256-JXrQ9pL2fCkycFlYl77ZapokfPSLIAsQB3ouApH3jaw="; +} diff --git a/manifests/forc-migrate-0.68.2-nightly-2025-05-13.nix b/manifests/forc-migrate-0.68.2-nightly-2025-05-13.nix new file mode 100644 index 00000000..d028dafd --- /dev/null +++ b/manifests/forc-migrate-0.68.2-nightly-2025-05-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.2"; + date = "2025-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "7386b19846863ae6252800270587815520adc750"; + sha256 = "sha256-xT9wiL5n3PUSOWO0Bu56rhj09inWUNGJBKFuZ+B9y5I="; +} diff --git a/manifests/forc-migrate-0.68.2.nix b/manifests/forc-migrate-0.68.2.nix new file mode 100644 index 00000000..836c4679 --- /dev/null +++ b/manifests/forc-migrate-0.68.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.2"; + date = "2025-05-01"; + url = "https://github.com/fuellabs/sway"; + rev = "05480bb07ed7b62e4123a2696ba22bce57ffb049"; + sha256 = "sha256-12BK6qvONpLLM37jGY0lDfhHN+JT5TgjQfIueJrkY9E="; +} diff --git a/manifests/forc-migrate-0.68.3-nightly-2025-05-14.nix b/manifests/forc-migrate-0.68.3-nightly-2025-05-14.nix new file mode 100644 index 00000000..361bb826 --- /dev/null +++ b/manifests/forc-migrate-0.68.3-nightly-2025-05-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.3"; + date = "2025-05-14"; + url = "https://github.com/fuellabs/sway"; + rev = "be7a9698b1a751d91045d7492336e10912fdc376"; + sha256 = "sha256-g+EP0CEsXlV6JjehFcZiNDkdXgLEx2qQb9nVSWALJH8="; +} diff --git a/manifests/forc-migrate-0.68.3.nix b/manifests/forc-migrate-0.68.3.nix new file mode 100644 index 00000000..2e1fc9c6 --- /dev/null +++ b/manifests/forc-migrate-0.68.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.3"; + date = "2025-05-12"; + url = "https://github.com/fuellabs/sway"; + rev = "48d95fc22eaeb700cf6cc52f17f3087a7a17693a"; + sha256 = "sha256-wJfPIkI0QSyqiiA9Mp+Vq7yfPS+v6+6rAlRlxE10trY="; +} diff --git a/manifests/forc-migrate-0.68.4-nightly-2025-05-15.nix b/manifests/forc-migrate-0.68.4-nightly-2025-05-15.nix new file mode 100644 index 00000000..d06fcb1e --- /dev/null +++ b/manifests/forc-migrate-0.68.4-nightly-2025-05-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.4"; + date = "2025-05-15"; + url = "https://github.com/fuellabs/sway"; + rev = "39251b665b110e6cbe85f312135eaeb97738583f"; + sha256 = "sha256-5pAFmTLLHjcINfJHClHQiOAFLAVAF37GilM7P5PSBTc="; +} diff --git a/manifests/forc-migrate-0.68.4-nightly-2025-05-18.nix b/manifests/forc-migrate-0.68.4-nightly-2025-05-18.nix new file mode 100644 index 00000000..5260037c --- /dev/null +++ b/manifests/forc-migrate-0.68.4-nightly-2025-05-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.4"; + date = "2025-05-18"; + url = "https://github.com/fuellabs/sway"; + rev = "0e3d949dbf3c7346f990738dba99cdd64f079ffd"; + sha256 = "sha256-kcaCOTbiviYKwT7KWwJAENixqj5FPOukU6SwYfhAF+c="; +} diff --git a/manifests/forc-migrate-0.68.4-nightly-2025-05-20.nix b/manifests/forc-migrate-0.68.4-nightly-2025-05-20.nix new file mode 100644 index 00000000..fefdb038 --- /dev/null +++ b/manifests/forc-migrate-0.68.4-nightly-2025-05-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.4"; + date = "2025-05-20"; + url = "https://github.com/fuellabs/sway"; + rev = "a4283762afbb19720c1976edc3952ea015506f1a"; + sha256 = "sha256-kerOcUFqrRGfWXL9tx2fQoMgvhiqTgJeEsBBOQbfTXM="; +} diff --git a/manifests/forc-migrate-0.68.4.nix b/manifests/forc-migrate-0.68.4.nix new file mode 100644 index 00000000..cdd62b46 --- /dev/null +++ b/manifests/forc-migrate-0.68.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.4"; + date = "2025-05-14"; + url = "https://github.com/fuellabs/sway"; + rev = "1fb61fdc42054109c54a57544b9aeb88afd3cae8"; + sha256 = "sha256-gMxxjQGCNyB2H9kAvk8BTGpu6PNkUyfFRIjmxBK4Erg="; +} diff --git a/manifests/forc-migrate-0.68.5-nightly-2025-05-21.nix b/manifests/forc-migrate-0.68.5-nightly-2025-05-21.nix new file mode 100644 index 00000000..c821d327 --- /dev/null +++ b/manifests/forc-migrate-0.68.5-nightly-2025-05-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.5"; + date = "2025-05-21"; + url = "https://github.com/fuellabs/sway"; + rev = "5a95c65b61f098897d8e46f25f722f636fe127e0"; + sha256 = "sha256-NUItVZ/577fYObUjchf5/mKTppuiv9Xxax+omZ1rk7o="; +} diff --git a/manifests/forc-migrate-0.68.5-nightly-2025-05-23.nix b/manifests/forc-migrate-0.68.5-nightly-2025-05-23.nix new file mode 100644 index 00000000..f0782313 --- /dev/null +++ b/manifests/forc-migrate-0.68.5-nightly-2025-05-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.5"; + date = "2025-05-23"; + url = "https://github.com/fuellabs/sway"; + rev = "ee565f9145f072001b0cf10f58f838cb2566e934"; + sha256 = "sha256-juA6XgvN12UzmE8Vvfrf0icEeXBqDLEWA2cjRpqZrqU="; +} diff --git a/manifests/forc-migrate-0.68.5-nightly-2025-05-24.nix b/manifests/forc-migrate-0.68.5-nightly-2025-05-24.nix new file mode 100644 index 00000000..5f5f324d --- /dev/null +++ b/manifests/forc-migrate-0.68.5-nightly-2025-05-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.5"; + date = "2025-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "c8625a029c588fcd8d4ffbfcee08326cfbf5b703"; + sha256 = "sha256-rvhRnyTjJ9bg+swsz0JkwfrPGgoPMvt5Q/xU4H9fuHQ="; +} diff --git a/manifests/forc-migrate-0.68.5-nightly-2025-05-27.nix b/manifests/forc-migrate-0.68.5-nightly-2025-05-27.nix new file mode 100644 index 00000000..1dd84041 --- /dev/null +++ b/manifests/forc-migrate-0.68.5-nightly-2025-05-27.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.5"; + date = "2025-05-27"; + url = "https://github.com/fuellabs/sway"; + rev = "d972e423ac65442611cb6bec06693f0cd263b8a6"; + sha256 = "sha256-dE8cXbZzXemKYllz/Kzkss8jyor0qSBH7Hk3irEBc+M="; +} diff --git a/manifests/forc-migrate-0.68.5-nightly-2025-05-28.nix b/manifests/forc-migrate-0.68.5-nightly-2025-05-28.nix new file mode 100644 index 00000000..420d1af5 --- /dev/null +++ b/manifests/forc-migrate-0.68.5-nightly-2025-05-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.5"; + date = "2025-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "f03d5ecdb0e63c66b5391fc907a5a272300a294a"; + sha256 = "sha256-D/xec8B/hC0136GPS+n24aLscvptlTfITYYhGOF9+4A="; +} diff --git a/manifests/forc-migrate-0.68.5.nix b/manifests/forc-migrate-0.68.5.nix new file mode 100644 index 00000000..76462ac0 --- /dev/null +++ b/manifests/forc-migrate-0.68.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.5"; + date = "2025-05-20"; + url = "https://github.com/fuellabs/sway"; + rev = "512bbfccdb15a0045576604ba97d7943c9b7520f"; + sha256 = "sha256-BpBo/uJd52ahBSzRYXpLk3cfNV4hjH3J/ZszRfWCNM0="; +} diff --git a/manifests/forc-migrate-0.68.6-nightly-2025-05-29.nix b/manifests/forc-migrate-0.68.6-nightly-2025-05-29.nix new file mode 100644 index 00000000..77914c70 --- /dev/null +++ b/manifests/forc-migrate-0.68.6-nightly-2025-05-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.6"; + date = "2025-05-29"; + url = "https://github.com/fuellabs/sway"; + rev = "ac5280641599d4e81017e18d04e47380722074ed"; + sha256 = "sha256-ZUYUeHtlLguGmwkdKE/HFgg47zWKhudM8J2JqC44F+Q="; +} diff --git a/manifests/forc-migrate-0.68.6-nightly-2025-05-30.nix b/manifests/forc-migrate-0.68.6-nightly-2025-05-30.nix new file mode 100644 index 00000000..dabd7354 --- /dev/null +++ b/manifests/forc-migrate-0.68.6-nightly-2025-05-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.6"; + date = "2025-05-30"; + url = "https://github.com/fuellabs/sway"; + rev = "2d0021c20bf348aaf5ae7ee41ac8dd610ba48cea"; + sha256 = "sha256-SfAzslGTI61qClSQzDlTI/ymcUJDUnVIR1AvkGnKuGo="; +} diff --git a/manifests/forc-migrate-0.68.6-nightly-2025-05-31.nix b/manifests/forc-migrate-0.68.6-nightly-2025-05-31.nix new file mode 100644 index 00000000..dbc9c2a5 --- /dev/null +++ b/manifests/forc-migrate-0.68.6-nightly-2025-05-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.6"; + date = "2025-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "d6804729c962513736253f377f25a323492ded93"; + sha256 = "sha256-bvH+zuVN1AgA5b21X5gkNa5TWYRIWRcZrlJ8KKtIFVU="; +} diff --git a/manifests/forc-migrate-0.68.6-nightly-2025-06-03.nix b/manifests/forc-migrate-0.68.6-nightly-2025-06-03.nix new file mode 100644 index 00000000..4ada8669 --- /dev/null +++ b/manifests/forc-migrate-0.68.6-nightly-2025-06-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.6"; + date = "2025-06-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e1e51fd81fa16872888a6f5ec25b9125181ca89a"; + sha256 = "sha256-j7GLeNt0l5vexHU78M5n9mgDZyYH3CteqMh9yQZ2oDU="; +} diff --git a/manifests/forc-migrate-0.68.6-nightly-2025-06-04.nix b/manifests/forc-migrate-0.68.6-nightly-2025-06-04.nix new file mode 100644 index 00000000..f92e3f70 --- /dev/null +++ b/manifests/forc-migrate-0.68.6-nightly-2025-06-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.6"; + date = "2025-06-04"; + url = "https://github.com/fuellabs/sway"; + rev = "0ac62945305079d94366062f1928293cefbe9dbf"; + sha256 = "sha256-xVyqCswbWWKSjVYWiyH19eFHcRZl/Z2PYxN1G6cZEIk="; +} diff --git a/manifests/forc-migrate-0.68.6.nix b/manifests/forc-migrate-0.68.6.nix new file mode 100644 index 00000000..8dd56a99 --- /dev/null +++ b/manifests/forc-migrate-0.68.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.6"; + date = "2025-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "ac5280641599d4e81017e18d04e47380722074ed"; + sha256 = "sha256-ZUYUeHtlLguGmwkdKE/HFgg47zWKhudM8J2JqC44F+Q="; +} diff --git a/manifests/forc-migrate-0.68.7-nightly-2025-06-05.nix b/manifests/forc-migrate-0.68.7-nightly-2025-06-05.nix new file mode 100644 index 00000000..e94753a1 --- /dev/null +++ b/manifests/forc-migrate-0.68.7-nightly-2025-06-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.7"; + date = "2025-06-05"; + url = "https://github.com/fuellabs/sway"; + rev = "58bf38ef9c737edbd677d2e0c5e5f32e8353ea00"; + sha256 = "sha256-1T2N3nbh16xaewOrHjAtnbWvMADJcsT6DToPOmGyh/M="; +} diff --git a/manifests/forc-migrate-0.68.7-nightly-2025-06-06.nix b/manifests/forc-migrate-0.68.7-nightly-2025-06-06.nix new file mode 100644 index 00000000..112fd1f0 --- /dev/null +++ b/manifests/forc-migrate-0.68.7-nightly-2025-06-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.7"; + date = "2025-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "fe8a3ef37a8a138e2c6aa583ae9ebb67c876a500"; + sha256 = "sha256-XFndqF78eXbmshZCZsbpKtjEwSEVVR+saxbXdJUTe4k="; +} diff --git a/manifests/forc-migrate-0.68.7-nightly-2025-06-11.nix b/manifests/forc-migrate-0.68.7-nightly-2025-06-11.nix new file mode 100644 index 00000000..f404cd92 --- /dev/null +++ b/manifests/forc-migrate-0.68.7-nightly-2025-06-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.7"; + date = "2025-06-11"; + url = "https://github.com/fuellabs/sway"; + rev = "14dc75275479666ddbfc3ade6a70333388a338a9"; + sha256 = "sha256-utIIwK4kzlqWDDYbV5Ord/Xdw1ptb32UJEA7f+w/3SY="; +} diff --git a/manifests/forc-migrate-0.68.7-nightly-2025-06-12.nix b/manifests/forc-migrate-0.68.7-nightly-2025-06-12.nix new file mode 100644 index 00000000..e6b87ba1 --- /dev/null +++ b/manifests/forc-migrate-0.68.7-nightly-2025-06-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.7"; + date = "2025-06-12"; + url = "https://github.com/fuellabs/sway"; + rev = "0e24afdc4fc4e7d8b463a9f264cc68d0e1522655"; + sha256 = "sha256-5TnV7w7vg/WYp5WEh0LszwUR0UHH0oFHPXq+iKsGuGM="; +} diff --git a/manifests/forc-migrate-0.68.7-nightly-2025-06-14.nix b/manifests/forc-migrate-0.68.7-nightly-2025-06-14.nix new file mode 100644 index 00000000..8b7de928 --- /dev/null +++ b/manifests/forc-migrate-0.68.7-nightly-2025-06-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.7"; + date = "2025-06-14"; + url = "https://github.com/fuellabs/sway"; + rev = "e0724422c6a867b15c1ff0e3f1bf85f445bc59e4"; + sha256 = "sha256-9GtBz+XdwsKpipMJh3wHIcky7N+5wXXeGpM51K++7bc="; +} diff --git a/manifests/forc-migrate-0.68.7-nightly-2025-06-18.nix b/manifests/forc-migrate-0.68.7-nightly-2025-06-18.nix new file mode 100644 index 00000000..f9c20b95 --- /dev/null +++ b/manifests/forc-migrate-0.68.7-nightly-2025-06-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.7"; + date = "2025-06-18"; + url = "https://github.com/fuellabs/sway"; + rev = "cd89f62ece16b3d4ff37dbbd07d68ec056f18a6e"; + sha256 = "sha256-FRhXivoZUnUDbY0XRh7/XXyz0D2KHycu/vtZeGjctTY="; +} diff --git a/manifests/forc-migrate-0.68.7-nightly-2025-06-19.nix b/manifests/forc-migrate-0.68.7-nightly-2025-06-19.nix new file mode 100644 index 00000000..0746480c --- /dev/null +++ b/manifests/forc-migrate-0.68.7-nightly-2025-06-19.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.7"; + date = "2025-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "b9ac2a9bdb2069b1c70637be4e2d4ae93361c73f"; + sha256 = "sha256-yxzmVuW3N7RV7L6qNDgA/2UMR3qjvwa3fCbRQLFXNnM="; +} diff --git a/manifests/forc-migrate-0.68.7.nix b/manifests/forc-migrate-0.68.7.nix new file mode 100644 index 00000000..13da77f5 --- /dev/null +++ b/manifests/forc-migrate-0.68.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.7"; + date = "2025-06-04"; + url = "https://github.com/fuellabs/sway"; + rev = "58bf38ef9c737edbd677d2e0c5e5f32e8353ea00"; + sha256 = "sha256-1T2N3nbh16xaewOrHjAtnbWvMADJcsT6DToPOmGyh/M="; +} diff --git a/manifests/forc-migrate-0.68.8-nightly-2025-06-20.nix b/manifests/forc-migrate-0.68.8-nightly-2025-06-20.nix new file mode 100644 index 00000000..8b7934e5 --- /dev/null +++ b/manifests/forc-migrate-0.68.8-nightly-2025-06-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.8"; + date = "2025-06-20"; + url = "https://github.com/fuellabs/sway"; + rev = "b2028431508c0ff64b97de4998a15d214b56e0eb"; + sha256 = "sha256-nbUx/CRvR/k/o14fduZNy+aE8g7bfiNTq6GHD2T7pJI="; +} diff --git a/manifests/forc-migrate-0.68.8-nightly-2025-06-22.nix b/manifests/forc-migrate-0.68.8-nightly-2025-06-22.nix new file mode 100644 index 00000000..d667587d --- /dev/null +++ b/manifests/forc-migrate-0.68.8-nightly-2025-06-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.8"; + date = "2025-06-22"; + url = "https://github.com/fuellabs/sway"; + rev = "83154ab6615d70479a11df50e7ea25733a8222cc"; + sha256 = "sha256-LiIlx3TwVKWegJNHnd942lPTtW9ImkPxBQULb3FCH2I="; +} diff --git a/manifests/forc-migrate-0.68.8.nix b/manifests/forc-migrate-0.68.8.nix new file mode 100644 index 00000000..8961d560 --- /dev/null +++ b/manifests/forc-migrate-0.68.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.8"; + date = "2025-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "93ae73db745a60dfd782b340ca21804bdde54aeb"; + sha256 = "sha256-JwKPK9Dyjb/ZgVwz2+7hybLzU6PqY8KKBz8MMQeyJVQ="; +} diff --git a/manifests/forc-migrate-0.68.9.nix b/manifests/forc-migrate-0.68.9.nix new file mode 100644 index 00000000..b2ff18c8 --- /dev/null +++ b/manifests/forc-migrate-0.68.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.68.9"; + date = "2025-06-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e054b396280942cb43a40bbc0b3a9b8cc30237ed"; + sha256 = "sha256-a+P/SqwMkQ0aDbaJH9VWNSxbvDBl4v6S5yb6HMuXABY="; +} diff --git a/manifests/forc-migrate-0.69.0-nightly-2025-06-24.nix b/manifests/forc-migrate-0.69.0-nightly-2025-06-24.nix new file mode 100644 index 00000000..aab816ab --- /dev/null +++ b/manifests/forc-migrate-0.69.0-nightly-2025-06-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-06-24"; + url = "https://github.com/fuellabs/sway"; + rev = "5c22e3398756548f8b6dbbe32c6dbd7d6d77451c"; + sha256 = "sha256-0HIFZcZQvA/QxJNkBTQyMLSapTjFhUQAaUyRY3ZdA9M="; +} diff --git a/manifests/forc-migrate-0.69.0-nightly-2025-06-28.nix b/manifests/forc-migrate-0.69.0-nightly-2025-06-28.nix new file mode 100644 index 00000000..83517205 --- /dev/null +++ b/manifests/forc-migrate-0.69.0-nightly-2025-06-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-06-28"; + url = "https://github.com/fuellabs/sway"; + rev = "c37dc92952247c1366d26702e6f72ee1dc77d046"; + sha256 = "sha256-ilGTFqb+5/rI8ya8E0K+BHR8Us3cVKuAOjOOdv9bXMU="; +} diff --git a/manifests/forc-migrate-0.69.0-nightly-2025-07-01.nix b/manifests/forc-migrate-0.69.0-nightly-2025-07-01.nix new file mode 100644 index 00000000..70e6ffb9 --- /dev/null +++ b/manifests/forc-migrate-0.69.0-nightly-2025-07-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-07-01"; + url = "https://github.com/fuellabs/sway"; + rev = "0cae7a31951587aa2787e622b5fb25527ed035d8"; + sha256 = "sha256-vKMgZWr3/YNVWhprR+I5ZADfIjv8H270ED2EA2g5Ljs="; +} diff --git a/manifests/forc-migrate-0.69.0-nightly-2025-07-02.nix b/manifests/forc-migrate-0.69.0-nightly-2025-07-02.nix new file mode 100644 index 00000000..8dbf7028 --- /dev/null +++ b/manifests/forc-migrate-0.69.0-nightly-2025-07-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-07-02"; + url = "https://github.com/fuellabs/sway"; + rev = "73fb34320e61b0a01f5c8375dfaeb534871b0586"; + sha256 = "sha256-cCSC9W5FbByd263qSq/WUqHm26x50KS1tTbV2Y6htIg="; +} diff --git a/manifests/forc-migrate-0.69.0-nightly-2025-07-05.nix b/manifests/forc-migrate-0.69.0-nightly-2025-07-05.nix new file mode 100644 index 00000000..1ee704f3 --- /dev/null +++ b/manifests/forc-migrate-0.69.0-nightly-2025-07-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-07-05"; + url = "https://github.com/fuellabs/sway"; + rev = "b54fce7727d1d07c6fa38d8aeaf8db821a78c0f3"; + sha256 = "sha256-4ZHUtGtlY+SI/MXU6MpwraFr4DzmVzW+/FFmqENS/qk="; +} diff --git a/manifests/forc-migrate-0.69.0-nightly-2025-07-08.nix b/manifests/forc-migrate-0.69.0-nightly-2025-07-08.nix new file mode 100644 index 00000000..78f7bece --- /dev/null +++ b/manifests/forc-migrate-0.69.0-nightly-2025-07-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-07-08"; + url = "https://github.com/fuellabs/sway"; + rev = "5ca3dcab93f0064f47438927fad8899ade888e9b"; + sha256 = "sha256-EJ5+cQolHJeY5GXRFggq9i4ocHfEdYwJLCfRmDVTDcU="; +} diff --git a/manifests/forc-migrate-0.69.0-nightly-2025-07-10.nix b/manifests/forc-migrate-0.69.0-nightly-2025-07-10.nix new file mode 100644 index 00000000..5e83e75d --- /dev/null +++ b/manifests/forc-migrate-0.69.0-nightly-2025-07-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-07-10"; + url = "https://github.com/fuellabs/sway"; + rev = "403a7e5780f5328c83bcf349a3f67189be158eea"; + sha256 = "sha256-dCOgyZ0fvH1q95Ibtm5MBn9MDAGfycbPpovGiYsYPo0="; +} diff --git a/manifests/forc-migrate-0.69.0-nightly-2025-07-12.nix b/manifests/forc-migrate-0.69.0-nightly-2025-07-12.nix new file mode 100644 index 00000000..daebafbc --- /dev/null +++ b/manifests/forc-migrate-0.69.0-nightly-2025-07-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-07-12"; + url = "https://github.com/fuellabs/sway"; + rev = "8b7524666b3349d5c51f2b9d2910f1ee9e20c3ff"; + sha256 = "sha256-n0VxAxi4ZcApi8Fxs+jd6t/Z4S1WWiSgoSxo0t4HO/0="; +} diff --git a/manifests/forc-migrate-0.69.0-nightly-2025-07-13.nix b/manifests/forc-migrate-0.69.0-nightly-2025-07-13.nix new file mode 100644 index 00000000..5bfbafba --- /dev/null +++ b/manifests/forc-migrate-0.69.0-nightly-2025-07-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-07-13"; + url = "https://github.com/fuellabs/sway"; + rev = "74092cbbcdd11d39c184097e10a34d2104c55209"; + sha256 = "sha256-WItCuXu1VzuDvH5PAkNoP96O+5Iv+ANZ/tY/Mu3bU2I="; +} diff --git a/manifests/forc-migrate-0.69.0.nix b/manifests/forc-migrate-0.69.0.nix new file mode 100644 index 00000000..4dc22b99 --- /dev/null +++ b/manifests/forc-migrate-0.69.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.0"; + date = "2025-06-23"; + url = "https://github.com/fuellabs/sway"; + rev = "5c22e3398756548f8b6dbbe32c6dbd7d6d77451c"; + sha256 = "sha256-0HIFZcZQvA/QxJNkBTQyMLSapTjFhUQAaUyRY3ZdA9M="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-07-18.nix b/manifests/forc-migrate-0.69.1-nightly-2025-07-18.nix new file mode 100644 index 00000000..90041b33 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-07-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-18"; + url = "https://github.com/fuellabs/sway"; + rev = "b68a3861db866f33078b3c966eaf5b3379e716cf"; + sha256 = "sha256-k4WlC6P7kXANf2kwJg8j9W1tMpW8ds74pVB2waDELzY="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-07-19.nix b/manifests/forc-migrate-0.69.1-nightly-2025-07-19.nix new file mode 100644 index 00000000..309ecfa7 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-07-19.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-19"; + url = "https://github.com/fuellabs/sway"; + rev = "03398522890e7b99511ec45343613de20b6edcd6"; + sha256 = "sha256-eV3/Qeg+8YReAM9/hCd7kcZd9Yve0dXgaNBa3Vnf8ao="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-07-21.nix b/manifests/forc-migrate-0.69.1-nightly-2025-07-21.nix new file mode 100644 index 00000000..ac085220 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-07-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-21"; + url = "https://github.com/fuellabs/sway"; + rev = "926cb4d098fd57da46e28ddd043af2d55b094ce1"; + sha256 = "sha256-j03PiBlN+LY3a9JwaxBN2LgFVYNzb4c9omhhNclXDKo="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-07-22.nix b/manifests/forc-migrate-0.69.1-nightly-2025-07-22.nix new file mode 100644 index 00000000..eec2b881 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-07-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-22"; + url = "https://github.com/fuellabs/sway"; + rev = "d8536d384f63c5ed4a4800b995e0b278be23c232"; + sha256 = "sha256-7KNnQuOE52zoQmJ33nnjloRXWh24r0Fg/uWHAozOaek="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-07-23.nix b/manifests/forc-migrate-0.69.1-nightly-2025-07-23.nix new file mode 100644 index 00000000..e5797496 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-07-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-23"; + url = "https://github.com/fuellabs/sway"; + rev = "a5e61488daff5db9a262173dcd0d4a78cb9e90cd"; + sha256 = "sha256-1wiGWfXw3lCWH4MijZ7xk6oQ9OnmKSd6LX3Say7T4QE="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-07-24.nix b/manifests/forc-migrate-0.69.1-nightly-2025-07-24.nix new file mode 100644 index 00000000..8123d8ea --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-07-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-24"; + url = "https://github.com/fuellabs/sway"; + rev = "22d858682b2ff06f01a3d74b1646508a00d623ac"; + sha256 = "sha256-QwBRrzuNNnfT/xBsq+bF4IK6Y67WqBUQVWxRYhuEdjc="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-07-25.nix b/manifests/forc-migrate-0.69.1-nightly-2025-07-25.nix new file mode 100644 index 00000000..a39330b5 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-07-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-25"; + url = "https://github.com/fuellabs/sway"; + rev = "4c9c4c29bfcda957cf58e1f6c6ed711c09334117"; + sha256 = "sha256-HEIgNOxMuTTCHcZrNH1SlBO4bNFcG6rVkKvPGXOTk/I="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-07-30.nix b/manifests/forc-migrate-0.69.1-nightly-2025-07-30.nix new file mode 100644 index 00000000..ef4ad00b --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-07-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-30"; + url = "https://github.com/fuellabs/sway"; + rev = "32dcbaa2431bbdaa0f40e4fc8c61d51c7e765967"; + sha256 = "sha256-b12wpFXPX1wDAlpJbQpQjpycanhR0gt5mNR4nePL0ek="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-07-31.nix b/manifests/forc-migrate-0.69.1-nightly-2025-07-31.nix new file mode 100644 index 00000000..22c676cd --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-07-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-31"; + url = "https://github.com/fuellabs/sway"; + rev = "c7ff31207a535386431afcd468c70592ec5ffa31"; + sha256 = "sha256-Pj7+7QlL/ftL3ZK7KrmA1XZb/ws1LAUhr5A+e2DdBQo="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-01.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-01.nix new file mode 100644 index 00000000..49efea68 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-01"; + url = "https://github.com/fuellabs/sway"; + rev = "8b29cc39c52cf7a3fd7857290f9741334923d362"; + sha256 = "sha256-jtCaouazr3gN9MKoqkH3okGnqo3AXzhue4Lwdt3rK8Q="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-02.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-02.nix new file mode 100644 index 00000000..858a396c --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-02"; + url = "https://github.com/fuellabs/sway"; + rev = "05e667dfc973f8aa26ab2081dc53ea804b7bf94e"; + sha256 = "sha256-EpdlAE9+PuaVZu29+oXFo2ir29m+62GCImj1DLzIr1E="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-06.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-06.nix new file mode 100644 index 00000000..be91cbfe --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-06"; + url = "https://github.com/fuellabs/sway"; + rev = "56e0c10a3a37055741b16d38710b4c0ab78277af"; + sha256 = "sha256-yI6H6cLYHem79lHcyVFEh0ZTPPC7Es5VFrCNK5sU98A="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-08.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-08.nix new file mode 100644 index 00000000..c013a059 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-08"; + url = "https://github.com/fuellabs/sway"; + rev = "fb6ea52a964dc3b6b8deaafb93ae2779d2822f10"; + sha256 = "sha256-VmIWWWoJPkMmLRLHvGt/UP2+EGdQt0d8vU+zDPk7mZ4="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-09.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-09.nix new file mode 100644 index 00000000..4c1a4c35 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-09"; + url = "https://github.com/fuellabs/sway"; + rev = "95130c4172e5e4986e3eefe8f597f1d1faa025ce"; + sha256 = "sha256-NyLtu7U9wLLg2uTPVmxyLMNjhQjqnTemDtbtTeEGhS0="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-14.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-14.nix new file mode 100644 index 00000000..e251ef5d --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-14"; + url = "https://github.com/fuellabs/sway"; + rev = "5d5ca3494954451e2b8799d7165d34516efe8d52"; + sha256 = "sha256-H63IGp3TEjidtyDq1bi64486mfvT8c1TPSIpmexWYqs="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-15.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-15.nix new file mode 100644 index 00000000..82ed18fd --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-15"; + url = "https://github.com/fuellabs/sway"; + rev = "fe9bbe39b9f06d455c8d5be403dd120a42d6a54c"; + sha256 = "sha256-xMinksVvWu2HgCCMoZJIBAS3yyuMxsgSVaFxJytLqtQ="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-20.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-20.nix new file mode 100644 index 00000000..590ea242 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-20"; + url = "https://github.com/fuellabs/sway"; + rev = "f036d4c45f730676608bd0bbe0f0e68d11af6fca"; + sha256 = "sha256-1wSq/TNkumriBbfawPUAB/30utkpox45uI/Pw3GyhvM="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-21.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-21.nix new file mode 100644 index 00000000..138acf6d --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-21"; + url = "https://github.com/fuellabs/sway"; + rev = "f59835a78a87502d1aef8bb8be61c7a6517c0210"; + sha256 = "sha256-2R+qajT3WPKinp1liG5/Ef220Q+PH4+Ypml6TsVp44Q="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-23.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-23.nix new file mode 100644 index 00000000..428c545b --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-23"; + url = "https://github.com/fuellabs/sway"; + rev = "b2c965e6970e1c8079ef77f359b14957a39e5546"; + sha256 = "sha256-vDtXSpLsam7EOPHND9xa+QVCN0CcelXtVsx98DnDCDg="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-24.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-24.nix new file mode 100644 index 00000000..7c5ad8fb --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-24"; + url = "https://github.com/fuellabs/sway"; + rev = "be5871da225d79dc2f3325788033ddb49e42928f"; + sha256 = "sha256-V1pUYHa1dVmGURn96EcU3J9I8lPHL5TQkZhWNsxazhU="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-25.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-25.nix new file mode 100644 index 00000000..9c8d641b --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-25"; + url = "https://github.com/fuellabs/sway"; + rev = "a347631478939613690c303d2f636506e4c44b0f"; + sha256 = "sha256-CVIBdk6+o6CY95cnVApwJ3zGJxx7mWpEzZFNoUU5vL8="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-27.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-27.nix new file mode 100644 index 00000000..5d7ab530 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-27.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-27"; + url = "https://github.com/fuellabs/sway"; + rev = "8be2dae76b6c6c7fa1dc6ba7cc58e55c00abb573"; + sha256 = "sha256-SyHl1eMG9fcxs7xfLwLrk4MbyuROeyr12Xh2rMfhr2E="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-28.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-28.nix new file mode 100644 index 00000000..245a188c --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "8cb7c57344d230258222110e22fef54e8bdef165"; + sha256 = "sha256-VA51UnSCNxSJAvcXJPV5hMLr7jPi0d9hHz/rL/YgZTc="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-29.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-29.nix new file mode 100644 index 00000000..c2b03573 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-29"; + url = "https://github.com/fuellabs/sway"; + rev = "d49cf8e92c9b5512c471571d135dc546fc456ac9"; + sha256 = "sha256-xOEmt3raPrVXhQvMqbqmmudbSxLTC0r7ne5GMjQJkJE="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-30.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-30.nix new file mode 100644 index 00000000..83c5c093 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-30"; + url = "https://github.com/fuellabs/sway"; + rev = "84e575ab5266b1103457bbca61b047a967c3d116"; + sha256 = "sha256-isNB7/VsDsBCXnyhWEgyOuHHMydLd3fjUD0sqV+7xuE="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-08-31.nix b/manifests/forc-migrate-0.69.1-nightly-2025-08-31.nix new file mode 100644 index 00000000..78a1220b --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-08-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "0aef56aa59abf7669d1b159a645b848b2721ee11"; + sha256 = "sha256-39FRxaXFWIsvVjwid77rjIOAMXA16WDuWnc2gT6kYZU="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-03.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-03.nix new file mode 100644 index 00000000..a7b15e1a --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-03"; + url = "https://github.com/fuellabs/sway"; + rev = "1e04b80c3a25e475023b978a5987686de962eb49"; + sha256 = "sha256-AMmx1suCuWuywmHiZahhBQM9vqnCvsUSOTIhgRPVrF8="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-04.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-04.nix new file mode 100644 index 00000000..16b7140b --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-04"; + url = "https://github.com/fuellabs/sway"; + rev = "c58ddbc57f716dcbbc9debed941b0c378ee800bc"; + sha256 = "sha256-TiufOKOHYgVJMsk9yYJSDNI5UH4pK2qSZQQYCWlL9tU="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-05.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-05.nix new file mode 100644 index 00000000..7a1de3a2 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-05"; + url = "https://github.com/fuellabs/sway"; + rev = "1f9880f60d288f36b623309b601da404792acbda"; + sha256 = "sha256-oZfoMFSTBuQji+d4OKqo07/f2cGKsJ7ZqP7y9cTwhQc="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-07.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-07.nix new file mode 100644 index 00000000..74bdf651 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-07.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-07"; + url = "https://github.com/fuellabs/sway"; + rev = "c2696d6c7b359ae014edf96b29e623f4ddcac0ee"; + sha256 = "sha256-MCV+t/k/JHE4vvOqhRzpiMap/pdfP57tZw7WzA8J+l4="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-09.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-09.nix new file mode 100644 index 00000000..a290bc46 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-09"; + url = "https://github.com/fuellabs/sway"; + rev = "6981d3dc884e8b2033509d40e4e9c9b888b82936"; + sha256 = "sha256-xaA/J8nptOBPkVtw8Jqk24z0KMA1/1TA+b7b9p3ZNco="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-11.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-11.nix new file mode 100644 index 00000000..f9cc30e3 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-11"; + url = "https://github.com/fuellabs/sway"; + rev = "b552ba17c8a1b0f9d46fdaeb808879060f8ba1f4"; + sha256 = "sha256-c+gs8HsPM2LGcu+I0PD7Sqys/9bbaGDNP59Kqx32PLI="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-12.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-12.nix new file mode 100644 index 00000000..0360ccde --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-12"; + url = "https://github.com/fuellabs/sway"; + rev = "608fc526adea252edf37c8512e3151f555b69aa7"; + sha256 = "sha256-mNWc0PgsO5V0kyi5hPCNzZhmhYAsdrEVMJbZZ1y+cZs="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-13.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-13.nix new file mode 100644 index 00000000..462792d8 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-13"; + url = "https://github.com/fuellabs/sway"; + rev = "4f1af4316a019aca20fdbe4fca862b2006457cb3"; + sha256 = "sha256-FTVhC6xAxhaWh5qtuzHG6P5U6Oy8HyEjQZroL8gk6vk="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-17.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-17.nix new file mode 100644 index 00000000..20308ed3 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-17.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-17"; + url = "https://github.com/fuellabs/sway"; + rev = "6553dce5a2765362cdfe772d989240198c87f5dd"; + sha256 = "sha256-8zEV6A6+hlvzqVU8AqLr7G3R2rEs1vw9gkpcj1WfhNw="; +} diff --git a/manifests/forc-migrate-0.69.1-nightly-2025-09-22.nix b/manifests/forc-migrate-0.69.1-nightly-2025-09-22.nix new file mode 100644 index 00000000..3ed76e63 --- /dev/null +++ b/manifests/forc-migrate-0.69.1-nightly-2025-09-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-09-22"; + url = "https://github.com/fuellabs/sway"; + rev = "e4672e3e1794e31eb53cf83c1821890b8c876a16"; + sha256 = "sha256-zevCtBXQmNriCMBNmpagzVnxD+9S7aQA4Qa+sHSLnw4="; +} diff --git a/manifests/forc-migrate-0.69.1.nix b/manifests/forc-migrate-0.69.1.nix new file mode 100644 index 00000000..9126b1b6 --- /dev/null +++ b/manifests/forc-migrate-0.69.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.1"; + date = "2025-07-17"; + url = "https://github.com/fuellabs/sway"; + rev = "b68a3861db866f33078b3c966eaf5b3379e716cf"; + sha256 = "sha256-k4WlC6P7kXANf2kwJg8j9W1tMpW8ds74pVB2waDELzY="; +} diff --git a/manifests/forc-migrate-0.69.2-nightly-2025-09-23.nix b/manifests/forc-migrate-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..a634c043 --- /dev/null +++ b/manifests/forc-migrate-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-migrate-0.69.2.nix b/manifests/forc-migrate-0.69.2.nix new file mode 100644 index 00000000..a634c043 --- /dev/null +++ b/manifests/forc-migrate-0.69.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-migrate-0.7.0.nix b/manifests/forc-migrate-0.7.0.nix new file mode 100644 index 00000000..5a798cd1 --- /dev/null +++ b/manifests/forc-migrate-0.7.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.7.0"; + date = "2022-03-22"; + url = "https://github.com/fuellabs/sway"; + rev = "7dd186041fbd2d4040b9a374fedc9a0cbed9eecb"; + sha256 = "sha256-B37FgsnDop9Vyn5t7aSn2RceGG3pdLxrHUJHZ2s53d8="; +} diff --git a/manifests/forc-migrate-0.8.0.nix b/manifests/forc-migrate-0.8.0.nix new file mode 100644 index 00000000..3352751c --- /dev/null +++ b/manifests/forc-migrate-0.8.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.8.0"; + date = "2022-03-25"; + url = "https://github.com/fuellabs/sway"; + rev = "04d26d6924788875fb01fa4fe58fe969849dcfc5"; + sha256 = "sha256-MTQlnuP9WVHL/rNHsMdmYqvIgHL5IJmIjUF9WqM55M0="; +} diff --git a/manifests/forc-migrate-0.9.0.nix b/manifests/forc-migrate-0.9.0.nix new file mode 100644 index 00000000..016ba70b --- /dev/null +++ b/manifests/forc-migrate-0.9.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.9.0"; + date = "2022-03-28"; + url = "https://github.com/fuellabs/sway"; + rev = "fdebe28e2803ef32238e6b39693748b6bdf6f34e"; + sha256 = "sha256-dzEkvJ+nP6+Xzp+nVz+VKy0RmfN/UkX/JlP/0cXqaY0="; +} diff --git a/manifests/forc-migrate-0.9.1.nix b/manifests/forc-migrate-0.9.1.nix new file mode 100644 index 00000000..8305d0b2 --- /dev/null +++ b/manifests/forc-migrate-0.9.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.9.1"; + date = "2022-03-29"; + url = "https://github.com/fuellabs/sway"; + rev = "72aa51d6da3d49b1bad2e6d6fffe6d4b3e331380"; + sha256 = "sha256-Mu3niggbgovHWhm6GtU/hhWqANm5YWFvdsrDExUPKYc="; +} diff --git a/manifests/forc-migrate-0.9.2.nix b/manifests/forc-migrate-0.9.2.nix new file mode 100644 index 00000000..5ef855fa --- /dev/null +++ b/manifests/forc-migrate-0.9.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-migrate"; + version = "0.9.2"; + date = "2022-03-30"; + url = "https://github.com/fuellabs/sway"; + rev = "4905aa0b2b6cb7178d6229e7bed94c241a418c26"; + sha256 = "sha256-C+1vF48WryCdT2X09E8RwcY8LRHxGX3ncRkc2MtNnY4="; +} diff --git a/manifests/forc-node-0.0.1.nix b/manifests/forc-node-0.0.1.nix new file mode 100644 index 00000000..f2c1c739 --- /dev/null +++ b/manifests/forc-node-0.0.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.0.1"; + date = "2021-09-27"; + url = "https://github.com/fuellabs/sway"; + rev = "c9781a1acca6eea8a1f2f30607466ae40d76de65"; + sha256 = "sha256-g6pSdahytTJQJ1rgLCku4289C2dnCLqzvSH8Mq8y26I="; +} diff --git a/manifests/forc-node-0.0.2.nix b/manifests/forc-node-0.0.2.nix new file mode 100644 index 00000000..72ed3ac2 --- /dev/null +++ b/manifests/forc-node-0.0.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.0.2"; + date = "2021-10-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e0c043bc9463eb266aaf111ff86b8c911602e053"; + sha256 = "sha256-LwGYEtKpb5eEts1K0TkRPwlWPu7EQLJbtaK8dAFexTk="; +} diff --git a/manifests/forc-node-0.0.3.nix b/manifests/forc-node-0.0.3.nix new file mode 100644 index 00000000..c79f8800 --- /dev/null +++ b/manifests/forc-node-0.0.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.0.3"; + date = "2021-10-16"; + url = "https://github.com/fuellabs/sway"; + rev = "ce7692d119fa9010dd0937b5f10cf5728fe72393"; + sha256 = "sha256-ygyqjapnGH+tznuYu5x9vnvhfHaoQ82vlyi90s/ZTCU="; +} diff --git a/manifests/forc-node-0.0.4.nix b/manifests/forc-node-0.0.4.nix new file mode 100644 index 00000000..9654caf4 --- /dev/null +++ b/manifests/forc-node-0.0.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.0.4"; + date = "2021-11-05"; + url = "https://github.com/fuellabs/sway"; + rev = "d40239e7d49793c7d3d23e0d3de6595e40b89e11"; + sha256 = "sha256-Udtk0i4LfiXYMWLZtRiDbjXseqiTs83BJgqHaMvJGLA="; +} diff --git a/manifests/forc-node-0.1.0.nix b/manifests/forc-node-0.1.0.nix new file mode 100644 index 00000000..f688ed33 --- /dev/null +++ b/manifests/forc-node-0.1.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.0"; + date = "2021-12-24"; + url = "https://github.com/fuellabs/sway"; + rev = "90c9b56a7fc313321fcc7580314284080d00078f"; + sha256 = "sha256-5VgXmm63O89wp6mayRf6ihMiK/JrXECfkmpo17MPEk4="; +} diff --git a/manifests/forc-node-0.1.1.nix b/manifests/forc-node-0.1.1.nix new file mode 100644 index 00000000..224b0c75 --- /dev/null +++ b/manifests/forc-node-0.1.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.1"; + date = "2021-12-24"; + url = "https://github.com/fuellabs/sway"; + rev = "8a37329cb1848efdeb46e2be1bfdb940b7750262"; + sha256 = "sha256-Ci4OJGp+iqmojxmf4Cg9m/2WG8jtKOPMDr2z6LDsOdU="; +} diff --git a/manifests/forc-node-0.1.2.nix b/manifests/forc-node-0.1.2.nix new file mode 100644 index 00000000..367aab32 --- /dev/null +++ b/manifests/forc-node-0.1.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.2"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2431af753ed8fc0a76df53fc72172cb4bdb5d4b9"; + sha256 = "sha256-FYwNTSaaZdtDGbOQ5/Tk4+lvyZ3PCJBtnNLE6+PuEng="; +} diff --git a/manifests/forc-node-0.1.3.nix b/manifests/forc-node-0.1.3.nix new file mode 100644 index 00000000..d96c3ef5 --- /dev/null +++ b/manifests/forc-node-0.1.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.3"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "d30d3225a30c46a9675ca5db270597190cc228bc"; + sha256 = "sha256-3kvkiTVQ5qSLqBPb3kl2VakJfQlCOYaTY9aonRgN6AY="; +} diff --git a/manifests/forc-node-0.1.4.nix b/manifests/forc-node-0.1.4.nix new file mode 100644 index 00000000..f5f2ce50 --- /dev/null +++ b/manifests/forc-node-0.1.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.4"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "46305882aa552be287b28e55606ba74b81070460"; + sha256 = "sha256-/sFiQmmk/L+qqK9J/BrhPahg0no7YculAbB+TyB9s+Y="; +} diff --git a/manifests/forc-node-0.1.5.nix b/manifests/forc-node-0.1.5.nix new file mode 100644 index 00000000..850535c7 --- /dev/null +++ b/manifests/forc-node-0.1.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.5"; + date = "2021-12-27"; + url = "https://github.com/fuellabs/sway"; + rev = "1923f44784e6d450796b10addd447aeb3325d519"; + sha256 = "sha256-X/c/HRNrZu3s/wKU2l9pkuuXpqPFZvqeeziW/9iloK4="; +} diff --git a/manifests/forc-node-0.1.6.nix b/manifests/forc-node-0.1.6.nix new file mode 100644 index 00000000..45297ad8 --- /dev/null +++ b/manifests/forc-node-0.1.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.6"; + date = "2021-12-28"; + url = "https://github.com/fuellabs/sway"; + rev = "a38a89a042f7ef13ddf67cc7661b37eac96aad8f"; + sha256 = "sha256-6HM7WTQsYaOXSvu8Jr0lh6KDQFpFJI+XybvzU8jFEic="; +} diff --git a/manifests/forc-node-0.1.7.nix b/manifests/forc-node-0.1.7.nix new file mode 100644 index 00000000..5477eb63 --- /dev/null +++ b/manifests/forc-node-0.1.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.7"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "4038415bf9f681fca220bcf3951230b0e9129ba6"; + sha256 = "sha256-gcKYLveFcyiZtPxGjtk8W9dYCVdVUSsUMTW071WavX0="; +} diff --git a/manifests/forc-node-0.1.8.nix b/manifests/forc-node-0.1.8.nix new file mode 100644 index 00000000..b7ab3fb9 --- /dev/null +++ b/manifests/forc-node-0.1.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.8"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "6fd0bc0b6ecf22f3b334a0c8da86e776a7e2b87d"; + sha256 = "sha256-2M3FGiWEq++cQIkxECjSHabbVuMTkuvCx0eFIuOSeU0="; +} diff --git a/manifests/forc-node-0.1.9.nix b/manifests/forc-node-0.1.9.nix new file mode 100644 index 00000000..08b71563 --- /dev/null +++ b/manifests/forc-node-0.1.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.1.9"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "6fe6354eb96fa9b85c10e89f628bdf7ee525059d"; + sha256 = "sha256-Bwn4w93PqCxMquIz52cWQ3u0xtZCXf5TzkKzQvnV15M="; +} diff --git a/manifests/forc-node-0.10.0.nix b/manifests/forc-node-0.10.0.nix new file mode 100644 index 00000000..e26d1b4a --- /dev/null +++ b/manifests/forc-node-0.10.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.10.0"; + date = "2022-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "a88ea439c95d9fb2701d6479ce496dc6571e92c2"; + sha256 = "sha256-YdU+xBfyQ6M4UVl/bgp5ba0byVUY7BMwryIZnradFNs="; +} diff --git a/manifests/forc-node-0.10.1.nix b/manifests/forc-node-0.10.1.nix new file mode 100644 index 00000000..4bce95b9 --- /dev/null +++ b/manifests/forc-node-0.10.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.10.1"; + date = "2022-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "5c85d2b712975669d238233297443557969dec43"; + sha256 = "sha256-8ocDTtJL468H3PpkQu5b9+lZtfjFP3MDK8YE2LtPYy4="; +} diff --git a/manifests/forc-node-0.10.2.nix b/manifests/forc-node-0.10.2.nix new file mode 100644 index 00000000..4a8252bf --- /dev/null +++ b/manifests/forc-node-0.10.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.10.2"; + date = "2022-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "443abbffd520f0f964e837fbc784641741fd7950"; + sha256 = "sha256-qnU5g9Oxusr67zIIei9cAUqT7VVkA2VDXbarM1abOgc="; +} diff --git a/manifests/forc-node-0.10.3.nix b/manifests/forc-node-0.10.3.nix new file mode 100644 index 00000000..c83341b2 --- /dev/null +++ b/manifests/forc-node-0.10.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.10.3"; + date = "2022-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "e7676db6f4ebc7a3885f87514d16a703a99410d7"; + sha256 = "sha256-/pWNhRZm+ev48LgpQhjGWuXG2TLvZSTpPHsZPLHcMiw="; +} diff --git a/manifests/forc-node-0.11.0.nix b/manifests/forc-node-0.11.0.nix new file mode 100644 index 00000000..96823a82 --- /dev/null +++ b/manifests/forc-node-0.11.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.11.0"; + date = "2022-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "95816e4e41aae1d3425ba6ff5e7266076d8400fa"; + sha256 = "sha256-2XvtFdkQwUVlUVSjQeTUHlEROQ8r1GOcG8uCPM3uDTc="; +} diff --git a/manifests/forc-node-0.12.1.nix b/manifests/forc-node-0.12.1.nix new file mode 100644 index 00000000..c4e29c79 --- /dev/null +++ b/manifests/forc-node-0.12.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.12.1"; + date = "2022-05-04"; + url = "https://github.com/fuellabs/sway"; + rev = "a03a5d1c068a91779e5ce08eead6c4626de2eb0d"; + sha256 = "sha256-nE10IRpnOkNHXfLfYhFhucjJ3JgdPW6AuNneLL14ymI="; +} diff --git a/manifests/forc-node-0.12.2.nix b/manifests/forc-node-0.12.2.nix new file mode 100644 index 00000000..851e9403 --- /dev/null +++ b/manifests/forc-node-0.12.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.12.2"; + date = "2022-05-12"; + url = "https://github.com/fuellabs/sway"; + rev = "2b6e9384f06692ec627293ae5db5e2f748fe2c30"; + sha256 = "sha256-HTo5eP8jZP5tzesGGA1i5YUmofsWxFJGKw0oMfvWv0c="; +} diff --git a/manifests/forc-node-0.13.0.nix b/manifests/forc-node-0.13.0.nix new file mode 100644 index 00000000..a28186da --- /dev/null +++ b/manifests/forc-node-0.13.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.13.0"; + date = "2022-05-19"; + url = "https://github.com/fuellabs/sway"; + rev = "6eef7ab750cd3282f08b6014960cbc02afae717a"; + sha256 = "sha256-iT90TBcMgmKTl/2MHR37Vtk7LcOshVMSshlU3BLhAG0="; +} diff --git a/manifests/forc-node-0.13.1.nix b/manifests/forc-node-0.13.1.nix new file mode 100644 index 00000000..d0935c9c --- /dev/null +++ b/manifests/forc-node-0.13.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.13.1"; + date = "2022-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "d73d9d2b4b547e2035ddfe085d439de56ccee1f0"; + sha256 = "sha256-jbuvLymTQb8g4ERJeu0K24z2OIw8aDlkBPF+YjiUkIE="; +} diff --git a/manifests/forc-node-0.13.2.nix b/manifests/forc-node-0.13.2.nix new file mode 100644 index 00000000..7c32c7a9 --- /dev/null +++ b/manifests/forc-node-0.13.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.13.2"; + date = "2022-05-25"; + url = "https://github.com/fuellabs/sway"; + rev = "dac1b96419a6ed46a4c531492ae5e794a270d4a1"; + sha256 = "sha256-LBuJ2ukkK1FosaLcZ10ds8/7ybN1UU/o0d9dRmbG5a4="; +} diff --git a/manifests/forc-node-0.14.0.nix b/manifests/forc-node-0.14.0.nix new file mode 100644 index 00000000..028b3ee6 --- /dev/null +++ b/manifests/forc-node-0.14.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.14.0"; + date = "2022-05-26"; + url = "https://github.com/fuellabs/sway"; + rev = "953dad9cad0defe50ffe04e4031207fd247b63f1"; + sha256 = "sha256-/z+nNctB9t1qLKiemsg+QuV2jBnuYgd0tCe3cEkI1OU="; +} diff --git a/manifests/forc-node-0.14.1.nix b/manifests/forc-node-0.14.1.nix new file mode 100644 index 00000000..9ecbc254 --- /dev/null +++ b/manifests/forc-node-0.14.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.14.1"; + date = "2022-05-26"; + url = "https://github.com/fuellabs/sway"; + rev = "02ef7d10b6bf883d73fc1fd23034dc814dfffea2"; + sha256 = "sha256-8Uh2gbZb1R1llk3h+DeCF3heBO2Ec3nJNqI6hpSTfq8="; +} diff --git a/manifests/forc-node-0.14.2.nix b/manifests/forc-node-0.14.2.nix new file mode 100644 index 00000000..976b7820 --- /dev/null +++ b/manifests/forc-node-0.14.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.14.2"; + date = "2022-05-27"; + url = "https://github.com/fuellabs/sway"; + rev = "6fc5c69f29a5aab0b6ca677d9384d0d5eaffb232"; + sha256 = "sha256-JGicorHY6HfSWoZa2nFOnx45qDrnXmORzHOOKHk/6sM="; +} diff --git a/manifests/forc-node-0.14.3.nix b/manifests/forc-node-0.14.3.nix new file mode 100644 index 00000000..45aa85a2 --- /dev/null +++ b/manifests/forc-node-0.14.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.14.3"; + date = "2022-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "17f856bfa0d500e06fff2c470e8e6113533faf97"; + sha256 = "sha256-VfyRHFmz89GT7UP/JCR8lPZY5vxhfxnyyWheQdWSRn0="; +} diff --git a/manifests/forc-node-0.14.4.nix b/manifests/forc-node-0.14.4.nix new file mode 100644 index 00000000..8967ab76 --- /dev/null +++ b/manifests/forc-node-0.14.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.14.4"; + date = "2022-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "b067a7dd64b26bd763eca268fef3849c2c77028d"; + sha256 = "sha256-VJGi0FlI+majMW66lo4Sxyo9NaaO+LgFyg7hHwckD1k="; +} diff --git a/manifests/forc-node-0.14.5.nix b/manifests/forc-node-0.14.5.nix new file mode 100644 index 00000000..cb01af26 --- /dev/null +++ b/manifests/forc-node-0.14.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.14.5"; + date = "2022-06-01"; + url = "https://github.com/fuellabs/sway"; + rev = "60c626cf486d5c53c44d84db1ec81cb90174cad3"; + sha256 = "sha256-3zI62Q+jaZYml3PjHn5Xsx635ARfUPsXBpOGDc0QzVM="; +} diff --git a/manifests/forc-node-0.15.0.nix b/manifests/forc-node-0.15.0.nix new file mode 100644 index 00000000..e8f65248 --- /dev/null +++ b/manifests/forc-node-0.15.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.15.0"; + date = "2022-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "ee7822c411a3d6135ea590bbc5c85527c4ede6d7"; + sha256 = "sha256-7qdjLcxcKCHt+RNrVU9WRK+DUepB0G/5RkScHHWRFJQ="; +} diff --git a/manifests/forc-node-0.15.1.nix b/manifests/forc-node-0.15.1.nix new file mode 100644 index 00000000..88bbca86 --- /dev/null +++ b/manifests/forc-node-0.15.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.15.1"; + date = "2022-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "a34b4b99fcdd065d559f6cbb9dec0697c3f5edd1"; + sha256 = "sha256-kR1NJqI6fOyDne1zvwIG2M92+dSOn+6Hby+Q4iMJAAQ="; +} diff --git a/manifests/forc-node-0.15.2.nix b/manifests/forc-node-0.15.2.nix new file mode 100644 index 00000000..5b45f5ad --- /dev/null +++ b/manifests/forc-node-0.15.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.15.2"; + date = "2022-06-09"; + url = "https://github.com/fuellabs/sway"; + rev = "eab07e48bc6dbd0c80aedc1e363bb63a6d5f0e28"; + sha256 = "sha256-vE29EiJYF4T6FW/1odNJyZOc5HKHR5sC10bASSFcmuc="; +} diff --git a/manifests/forc-node-0.16.0.nix b/manifests/forc-node-0.16.0.nix new file mode 100644 index 00000000..bfa06a12 --- /dev/null +++ b/manifests/forc-node-0.16.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.16.0"; + date = "2022-06-16"; + url = "https://github.com/fuellabs/sway"; + rev = "948f7aba42b4138433fb5b61c698c8f4a60db424"; + sha256 = "sha256-5yPftMl1LJkub2yeGHF1BrLZZSYzg82IYFVpVWG0v48="; +} diff --git a/manifests/forc-node-0.16.1.nix b/manifests/forc-node-0.16.1.nix new file mode 100644 index 00000000..ed0cc001 --- /dev/null +++ b/manifests/forc-node-0.16.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.16.1"; + date = "2022-06-17"; + url = "https://github.com/fuellabs/sway"; + rev = "dcf22453aeb054335d96ef810da9d4f756d869b7"; + sha256 = "sha256-kAZVbgkf7ganCs+sBPL0eMmR3MDCm6s+qL8d1CfHL8U="; +} diff --git a/manifests/forc-node-0.16.2.nix b/manifests/forc-node-0.16.2.nix new file mode 100644 index 00000000..53dba47e --- /dev/null +++ b/manifests/forc-node-0.16.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.16.2"; + date = "2022-06-24"; + url = "https://github.com/fuellabs/sway"; + rev = "7920330d34c97cf418b6d0e1561f978068158228"; + sha256 = "sha256-NpCpZYxgJeUcgw5QqnAhzVmEkMrR7cs2Sj6aW6Rm6JU="; +} diff --git a/manifests/forc-node-0.17.0.nix b/manifests/forc-node-0.17.0.nix new file mode 100644 index 00000000..41e75990 --- /dev/null +++ b/manifests/forc-node-0.17.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.17.0"; + date = "2022-07-01"; + url = "https://github.com/fuellabs/sway"; + rev = "b81bcd9652d4fc9908d1971c9215a7cfdde39adc"; + sha256 = "sha256-cOyJXvwyZbZeTLfw9xoAtY1rsHN29VXLkRsEeCZyDmI="; +} diff --git a/manifests/forc-node-0.18.0.nix b/manifests/forc-node-0.18.0.nix new file mode 100644 index 00000000..0d1563cd --- /dev/null +++ b/manifests/forc-node-0.18.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.18.0"; + date = "2022-07-08"; + url = "https://github.com/fuellabs/sway"; + rev = "ada0d294a68e5ca3070e3c46eb89619e7d87caf2"; + sha256 = "sha256-9a39KoLnQ7urf7pBwxFy8B2+SELuhhx6JDZjyZo2rSQ="; +} diff --git a/manifests/forc-node-0.18.1.nix b/manifests/forc-node-0.18.1.nix new file mode 100644 index 00000000..bccd4e8c --- /dev/null +++ b/manifests/forc-node-0.18.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.18.1"; + date = "2022-07-11"; + url = "https://github.com/fuellabs/sway"; + rev = "3bd8eaf4a0f11a3009c9421100cc06c2e897b6c2"; + sha256 = "sha256-WI7srBdT5WAMZ6OfUWAcihZcpxbn/ogfVE3LaoQptcM="; +} diff --git a/manifests/forc-node-0.19.0.nix b/manifests/forc-node-0.19.0.nix new file mode 100644 index 00000000..5643d88e --- /dev/null +++ b/manifests/forc-node-0.19.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.19.0"; + date = "2022-07-27"; + url = "https://github.com/fuellabs/sway"; + rev = "5c716e1ba55d755555ed5aa186c883f73c4f90dc"; + sha256 = "sha256-DKB7ykAHVte8Dt566iNdY6CIkvs06zRxCWT50LoQRBk="; +} diff --git a/manifests/forc-node-0.19.1.nix b/manifests/forc-node-0.19.1.nix new file mode 100644 index 00000000..88cfb1a3 --- /dev/null +++ b/manifests/forc-node-0.19.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.19.1"; + date = "2022-08-01"; + url = "https://github.com/fuellabs/sway"; + rev = "1202e790c119ff9f04c847ecaab3411cfaf32f94"; + sha256 = "sha256-jFtMg6C861fIWZBmX5SbSsvQwPUr+KWQOcQnPDweWUo="; +} diff --git a/manifests/forc-node-0.19.2.nix b/manifests/forc-node-0.19.2.nix new file mode 100644 index 00000000..d25bf4aa --- /dev/null +++ b/manifests/forc-node-0.19.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.19.2"; + date = "2022-08-08"; + url = "https://github.com/fuellabs/sway"; + rev = "6808861389966f99887f71476918a562a9edd90e"; + sha256 = "sha256-LL5jMwMvw//bN8SkI5K/tNF+7NKuuOXpcMGezEmrQ4g="; +} diff --git a/manifests/forc-node-0.2.0.nix b/manifests/forc-node-0.2.0.nix new file mode 100644 index 00000000..ec940fc3 --- /dev/null +++ b/manifests/forc-node-0.2.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.2.0"; + date = "2022-01-06"; + url = "https://github.com/fuellabs/sway"; + rev = "38479274e0c50518e20c919682b8173ae4a555d3"; + sha256 = "sha256-48BfRiY2evrKlcz1bXBWoWQgRtkk4jc2r3GZRj28sPo="; +} diff --git a/manifests/forc-node-0.2.1.nix b/manifests/forc-node-0.2.1.nix new file mode 100644 index 00000000..54c050d1 --- /dev/null +++ b/manifests/forc-node-0.2.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.2.1"; + date = "2022-01-07"; + url = "https://github.com/fuellabs/sway"; + rev = "a790fd729b2021f837be924c7b8b21099b9f6c12"; + sha256 = "sha256-TUQQa1uE9JuZzEnXxrOAeBplNkzt9MRWzPjxZdECZg8="; +} diff --git a/manifests/forc-node-0.20.0.nix b/manifests/forc-node-0.20.0.nix new file mode 100644 index 00000000..4e15852b --- /dev/null +++ b/manifests/forc-node-0.20.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.20.0"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "fc3a05d87d1178e937fc5e4742b13fcca490057d"; + sha256 = "sha256-gJaLWboU9LNEn9Xu+0AIveFvG3wCTMH1P95H+DVJCRw="; +} diff --git a/manifests/forc-node-0.20.1.nix b/manifests/forc-node-0.20.1.nix new file mode 100644 index 00000000..c468a634 --- /dev/null +++ b/manifests/forc-node-0.20.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.20.1"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "21887f4b321bfacb16c7a6602071e3b6ea1c8df1"; + sha256 = "sha256-mO7vojv7gEfBJaEmBW2uQTo1ecLNoTL6E1o1d68saBQ="; +} diff --git a/manifests/forc-node-0.20.2.nix b/manifests/forc-node-0.20.2.nix new file mode 100644 index 00000000..820db2c2 --- /dev/null +++ b/manifests/forc-node-0.20.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.20.2"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "6a8116fcee71aa960217b1672bac0c35d1fce42c"; + sha256 = "sha256-JfjHda4vRGPiZ2EhJbGMzpSJ24bFFS3WlPxtXmI3mno="; +} diff --git a/manifests/forc-node-0.21.0.nix b/manifests/forc-node-0.21.0.nix new file mode 100644 index 00000000..b806e927 --- /dev/null +++ b/manifests/forc-node-0.21.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.21.0"; + date = "2022-08-29"; + url = "https://github.com/fuellabs/sway"; + rev = "32b5b142b54d3d38ae1f7df69f465138e86de82d"; + sha256 = "sha256-joWJifoFBzzK9FdhQwyYwVuDU4/8hQzmrUgD7+2BSJY="; +} diff --git a/manifests/forc-node-0.22.0.nix b/manifests/forc-node-0.22.0.nix new file mode 100644 index 00000000..18dd506a --- /dev/null +++ b/manifests/forc-node-0.22.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.22.0"; + date = "2022-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "6e1fbca21f0979d226efd7ceea5b6d71696536cd"; + sha256 = "sha256-cK7YReHEq3Z/wVV6bxTohdHI9c2zSz53Sej8GCWSIrI="; +} diff --git a/manifests/forc-node-0.22.1.nix b/manifests/forc-node-0.22.1.nix new file mode 100644 index 00000000..1e8ee679 --- /dev/null +++ b/manifests/forc-node-0.22.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.22.1"; + date = "2022-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "c486eabc3ed4d8c53b63735188f2c1db5d17703c"; + sha256 = "sha256-fChGs4bPxg82noIJooec6Tk908T8BrDUWH6YQNvAuhg="; +} diff --git a/manifests/forc-node-0.23.0.nix b/manifests/forc-node-0.23.0.nix new file mode 100644 index 00000000..747a1cf2 --- /dev/null +++ b/manifests/forc-node-0.23.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.23.0"; + date = "2022-09-03"; + url = "https://github.com/fuellabs/sway"; + rev = "4712e5b26c6c0f778d7771ef1b35a229fe3a371d"; + sha256 = "sha256-ZdH69u5DOe/fjARXWpJe0J21K/rVL4YJD5/qHQdlr50="; +} diff --git a/manifests/forc-node-0.24.0.nix b/manifests/forc-node-0.24.0.nix new file mode 100644 index 00000000..2639464e --- /dev/null +++ b/manifests/forc-node-0.24.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.24.0"; + date = "2022-09-06"; + url = "https://github.com/fuellabs/sway"; + rev = "ea4f1b7885248c2b4c4d0da394c2cc50ea1583e8"; + sha256 = "sha256-2DwlfRw+aw9g4E2wPeomlGH/qe6O0kKha3Vu3+HY4AI="; +} diff --git a/manifests/forc-node-0.24.1.nix b/manifests/forc-node-0.24.1.nix new file mode 100644 index 00000000..d32802d1 --- /dev/null +++ b/manifests/forc-node-0.24.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.24.1"; + date = "2022-09-07"; + url = "https://github.com/fuellabs/sway"; + rev = "54e1a340e6c0c9a675e8a66aab03f579d5d6b39b"; + sha256 = "sha256-t/VFaYCANGY5CM2FFrLhNiBB5eAL/CFCZvIzigr3d1I="; +} diff --git a/manifests/forc-node-0.24.2.nix b/manifests/forc-node-0.24.2.nix new file mode 100644 index 00000000..394d09db --- /dev/null +++ b/manifests/forc-node-0.24.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.24.2"; + date = "2022-09-09"; + url = "https://github.com/fuellabs/sway"; + rev = "057e83aee87d17c3812f223f5fc7884cf6d3468a"; + sha256 = "sha256-XQePJ7tvPqjAAnqdpavkUxuCtH8MmaiXSDrhIUpjVQo="; +} diff --git a/manifests/forc-node-0.24.3.nix b/manifests/forc-node-0.24.3.nix new file mode 100644 index 00000000..aeae8c4f --- /dev/null +++ b/manifests/forc-node-0.24.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.24.3"; + date = "2022-09-12"; + url = "https://github.com/fuellabs/sway"; + rev = "95cd150cacef407a1f30c89899c539b0d57f099d"; + sha256 = "sha256-oWQpD2HohdjQ0lcnOjipT0oTIX68KnoWy13FeXYKi7E="; +} diff --git a/manifests/forc-node-0.24.4.nix b/manifests/forc-node-0.24.4.nix new file mode 100644 index 00000000..5e7efd38 --- /dev/null +++ b/manifests/forc-node-0.24.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.24.4"; + date = "2022-09-16"; + url = "https://github.com/fuellabs/sway"; + rev = "f7800e18979dd8e4c8d672b8e7aae1758c2edb88"; + sha256 = "sha256-jRqUQv7nsv0xq+CNrEYCnt0yfiVycTUF3eYOMt/DCdQ="; +} diff --git a/manifests/forc-node-0.24.5.nix b/manifests/forc-node-0.24.5.nix new file mode 100644 index 00000000..a6a96b7c --- /dev/null +++ b/manifests/forc-node-0.24.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.24.5"; + date = "2022-09-24"; + url = "https://github.com/fuellabs/sway"; + rev = "e695606d8884a18664f6231681333a784e623bc9"; + sha256 = "sha256-gsLMsR+sFj3tvE86JvKzj95aMp1o9ERBkTskr+ejUhM="; +} diff --git a/manifests/forc-node-0.25.0.nix b/manifests/forc-node-0.25.0.nix new file mode 100644 index 00000000..0ad61407 --- /dev/null +++ b/manifests/forc-node-0.25.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.25.0"; + date = "2022-10-05"; + url = "https://github.com/fuellabs/sway"; + rev = "0f84734f6f95a8598d701b087e486caacf23f514"; + sha256 = "sha256-tXUEiGKpq7H5nSUICGlUeUJtDnKjwDpBvzl5d3jd8OE="; +} diff --git a/manifests/forc-node-0.25.1.nix b/manifests/forc-node-0.25.1.nix new file mode 100644 index 00000000..17729210 --- /dev/null +++ b/manifests/forc-node-0.25.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.25.1"; + date = "2022-10-06"; + url = "https://github.com/fuellabs/sway"; + rev = "cc9740bea1438cdde7f15fa0d0c2eba705b6aef1"; + sha256 = "sha256-YeTt1+D8e3VnqBmn5VWa/NUlDEOzf8zxeuYh5QXBEVM="; +} diff --git a/manifests/forc-node-0.25.2.nix b/manifests/forc-node-0.25.2.nix new file mode 100644 index 00000000..1dba3c76 --- /dev/null +++ b/manifests/forc-node-0.25.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.25.2"; + date = "2022-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "dfa6224932a97c514b707dcfc300715b2a0895dc"; + sha256 = "sha256-rZrjzlGIdv1ul2xb94YkkUqXWEbACFQKXirpa/uuITs="; +} diff --git a/manifests/forc-node-0.26.0.nix b/manifests/forc-node-0.26.0.nix new file mode 100644 index 00000000..8ee69dff --- /dev/null +++ b/manifests/forc-node-0.26.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.26.0"; + date = "2022-10-13"; + url = "https://github.com/fuellabs/sway"; + rev = "e7674f704f2706e22f77c0ed32df9c89302e5e7e"; + sha256 = "sha256-S7jlje5wd2RiO4+IDjoWUiN19h21DK1sUWlziwxb+3I="; +} diff --git a/manifests/forc-node-0.27.0.nix b/manifests/forc-node-0.27.0.nix new file mode 100644 index 00000000..fe3dc4b7 --- /dev/null +++ b/manifests/forc-node-0.27.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.27.0"; + date = "2022-10-23"; + url = "https://github.com/fuellabs/sway"; + rev = "40f1e79de08af109f2ebb066f51704f36094ed1e"; + sha256 = "sha256-qIso6YBCs4HKu1fAqM0fgq0vcaOqgGeZ2CY0ZLjTm+o="; +} diff --git a/manifests/forc-node-0.28.0.nix b/manifests/forc-node-0.28.0.nix new file mode 100644 index 00000000..c4eb55ca --- /dev/null +++ b/manifests/forc-node-0.28.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.28.0"; + date = "2022-10-25"; + url = "https://github.com/fuellabs/sway"; + rev = "a7978381effcf999adc5726587bf8f711f04e414"; + sha256 = "sha256-3xqbdGXjWIfdZV7po64bp+N79MGfEkL0fRyKcel0A2s="; +} diff --git a/manifests/forc-node-0.28.1.nix b/manifests/forc-node-0.28.1.nix new file mode 100644 index 00000000..407997a7 --- /dev/null +++ b/manifests/forc-node-0.28.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.28.1"; + date = "2022-10-25"; + url = "https://github.com/fuellabs/sway"; + rev = "84f9aad376760cd9c8eacc8a4848bffeb25bf9a5"; + sha256 = "sha256-S5sB6ahI7P2Qv4Rh3GTE7lkYcEAbp1znpW/hlkyuh9U="; +} diff --git a/manifests/forc-node-0.29.0.nix b/manifests/forc-node-0.29.0.nix new file mode 100644 index 00000000..1407f0bc --- /dev/null +++ b/manifests/forc-node-0.29.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.29.0"; + date = "2022-10-31"; + url = "https://github.com/fuellabs/sway"; + rev = "dc8e5f6b84741a3a690ba25b473f8b1e01e31103"; + sha256 = "sha256-HVGhxE8PgPcCok8BE7ESmlbC3RHAOT6QtdhB0W60D6g="; +} diff --git a/manifests/forc-node-0.3.0.nix b/manifests/forc-node-0.3.0.nix new file mode 100644 index 00000000..df47c9b5 --- /dev/null +++ b/manifests/forc-node-0.3.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.3.0"; + date = "2022-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "b81eee7d23af71958ba1a3276855949277902a57"; + sha256 = "sha256-25ZOELcJchuJapvGZFigzsl3BPEUW/R3f5NhvoXBKeE="; +} diff --git a/manifests/forc-node-0.3.1.nix b/manifests/forc-node-0.3.1.nix new file mode 100644 index 00000000..681e56a3 --- /dev/null +++ b/manifests/forc-node-0.3.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.3.1"; + date = "2022-01-23"; + url = "https://github.com/fuellabs/sway"; + rev = "d9b5a1103a1f37672d6f09c8dae34b813872d44b"; + sha256 = "sha256-eYVjjBkg6Gxc7mKMl7oaK3Ws2XVDHWAt+z3WIjGM3Xs="; +} diff --git a/manifests/forc-node-0.3.2.nix b/manifests/forc-node-0.3.2.nix new file mode 100644 index 00000000..e37d78f2 --- /dev/null +++ b/manifests/forc-node-0.3.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.3.2"; + date = "2022-01-27"; + url = "https://github.com/fuellabs/sway"; + rev = "3012191420362e9ba1df0324b2a9e80eeded7e1d"; + sha256 = "sha256-5AirUGidtaNFfVf4uSutfrEvs2wd/ROiDyudYHb2EWQ="; +} diff --git a/manifests/forc-node-0.3.3.nix b/manifests/forc-node-0.3.3.nix new file mode 100644 index 00000000..0c505c65 --- /dev/null +++ b/manifests/forc-node-0.3.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.3.3"; + date = "2022-01-27"; + url = "https://github.com/fuellabs/sway"; + rev = "441ab123839f2eb4f5dd1b055fdbe5a5b26a6736"; + sha256 = "sha256-QI8nqWfKr+/yGP96NnNdpKGwHHzA6UxEyQvjwQLgcSU="; +} diff --git a/manifests/forc-node-0.30.0.nix b/manifests/forc-node-0.30.0.nix new file mode 100644 index 00000000..848dd152 --- /dev/null +++ b/manifests/forc-node-0.30.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.30.0"; + date = "2022-11-02"; + url = "https://github.com/fuellabs/sway"; + rev = "37deaee8fccf5804d78a003cf64f14fac654fc41"; + sha256 = "sha256-BIVBDX3i2ym6d/90AuK/I/ATtJqUFZS9OdltCdBtqI0="; +} diff --git a/manifests/forc-node-0.30.1.nix b/manifests/forc-node-0.30.1.nix new file mode 100644 index 00000000..e1664cd8 --- /dev/null +++ b/manifests/forc-node-0.30.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.30.1"; + date = "2022-11-04"; + url = "https://github.com/fuellabs/sway"; + rev = "158f22115bf000d45862be95ff7fdb0ff5bdee4d"; + sha256 = "sha256-m0y1Zy0iyWCuyqfMhYGQ2myb4zhcZHqLRZIk4ZWZ338="; +} diff --git a/manifests/forc-node-0.31.0.nix b/manifests/forc-node-0.31.0.nix new file mode 100644 index 00000000..86fd3c31 --- /dev/null +++ b/manifests/forc-node-0.31.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.31.0"; + date = "2022-11-09"; + url = "https://github.com/fuellabs/sway"; + rev = "7a389ddb35bae051938e5441c8ef4a8b63dd269c"; + sha256 = "sha256-fRGQtZxDPD0sPfpt6xKYOaR9Ty1NDqR8El6rRIuU83M="; +} diff --git a/manifests/forc-node-0.31.1.nix b/manifests/forc-node-0.31.1.nix new file mode 100644 index 00000000..06956786 --- /dev/null +++ b/manifests/forc-node-0.31.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.31.1"; + date = "2022-11-11"; + url = "https://github.com/fuellabs/sway"; + rev = "c32b0759d25c0b515cbf535f9fb9b8e6fda38ff2"; + sha256 = "sha256-5GlH4fTix4r+b66tsE1vx/iyJCsNPnWjfuY7Iu36234="; +} diff --git a/manifests/forc-node-0.31.2.nix b/manifests/forc-node-0.31.2.nix new file mode 100644 index 00000000..68a40971 --- /dev/null +++ b/manifests/forc-node-0.31.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.31.2"; + date = "2022-11-29"; + url = "https://github.com/fuellabs/sway"; + rev = "12239f7d57441a75b0979f2f34d5151a777a5c0a"; + sha256 = "sha256-9qHs1OatcgPBSLToDkCvTfTXxeAOTjrM1jABQZxqUaI="; +} diff --git a/manifests/forc-node-0.31.3.nix b/manifests/forc-node-0.31.3.nix new file mode 100644 index 00000000..2e910050 --- /dev/null +++ b/manifests/forc-node-0.31.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.31.3"; + date = "2022-11-30"; + url = "https://github.com/fuellabs/sway"; + rev = "12ad8423811d566972dd75fbb954cdb95afde8d8"; + sha256 = "sha256-vsRRV7NAxSQw+NlZr7dUe2g0Hd8LSjkyXxDiygVfb54="; +} diff --git a/manifests/forc-node-0.32.0.nix b/manifests/forc-node-0.32.0.nix new file mode 100644 index 00000000..5147b42c --- /dev/null +++ b/manifests/forc-node-0.32.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.32.0"; + date = "2022-12-14"; + url = "https://github.com/fuellabs/sway"; + rev = "ed1610a2f6bce5fba39ec53fe7da1ba2f05da4ce"; + sha256 = "sha256-ZteML6BecCLkj7w5fVJcRVxRYpZocpgNXuNRjDszEYc="; +} diff --git a/manifests/forc-node-0.32.1.nix b/manifests/forc-node-0.32.1.nix new file mode 100644 index 00000000..534bef4c --- /dev/null +++ b/manifests/forc-node-0.32.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.32.1"; + date = "2022-12-14"; + url = "https://github.com/fuellabs/sway"; + rev = "50c1b6c858c044acf88760cb7eb1b39d076f322d"; + sha256 = "sha256-GnF8eHwhcCC0Yr73jNVjyZUh1lOU9YmFslFzeZnSqHo="; +} diff --git a/manifests/forc-node-0.32.2.nix b/manifests/forc-node-0.32.2.nix new file mode 100644 index 00000000..4d1b63f9 --- /dev/null +++ b/manifests/forc-node-0.32.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.32.2"; + date = "2022-12-15"; + url = "https://github.com/fuellabs/sway"; + rev = "b9996f13463c324e256014935c053c334b880ab5"; + sha256 = "sha256-ZCAsObQ50XJnsc64XFB/6ia8fjX3vi4rHug6FuC2ySc="; +} diff --git a/manifests/forc-node-0.33.0.nix b/manifests/forc-node-0.33.0.nix new file mode 100644 index 00000000..52de3e51 --- /dev/null +++ b/manifests/forc-node-0.33.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.33.0"; + date = "2023-01-05"; + url = "https://github.com/fuellabs/sway"; + rev = "2b2b4b117c4f6a5e762e368af0dfc6896fa31e7d"; + sha256 = "sha256-K/RT9WFv1uGpBbwckvhcvXPdEnNjluSd2f7CNdjeGhQ="; +} diff --git a/manifests/forc-node-0.33.1.nix b/manifests/forc-node-0.33.1.nix new file mode 100644 index 00000000..8d67f0af --- /dev/null +++ b/manifests/forc-node-0.33.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.33.1"; + date = "2023-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "acd4c1e0fbdc406800a06c845430a80dd3560fcc"; + sha256 = "sha256-00KVxZUcyCrE4RT2WrmHtxFFFyxLuiD6nJV9PoDzHng="; +} diff --git a/manifests/forc-node-0.34.0.nix b/manifests/forc-node-0.34.0.nix new file mode 100644 index 00000000..770ca4d8 --- /dev/null +++ b/manifests/forc-node-0.34.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.34.0"; + date = "2023-02-01"; + url = "https://github.com/fuellabs/sway"; + rev = "ddb0ede05e649489b554da4f7a8003b507443ad0"; + sha256 = "sha256-LI/cJybVpg/cpY6vD5YdmlAJkPc0q9hIeGlE4j+YfAc="; +} diff --git a/manifests/forc-node-0.35.0.nix b/manifests/forc-node-0.35.0.nix new file mode 100644 index 00000000..db38604e --- /dev/null +++ b/manifests/forc-node-0.35.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.35.0"; + date = "2023-02-08"; + url = "https://github.com/fuellabs/sway"; + rev = "b6f19a3be7b2fb5ef88e358a926854dac10cb281"; + sha256 = "sha256-gXmI2j0z7OP3iXMT8F7HNH4Gvei6aFxluYRgbiyU7fo="; +} diff --git a/manifests/forc-node-0.35.1.nix b/manifests/forc-node-0.35.1.nix new file mode 100644 index 00000000..534fb052 --- /dev/null +++ b/manifests/forc-node-0.35.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.35.1"; + date = "2023-02-15"; + url = "https://github.com/fuellabs/sway"; + rev = "1f9debfaf9b85d41f3b704c45633eb4daddcb594"; + sha256 = "sha256-dcPtllP66f7J5YVqY+T9gj9DvOZX1fvZb2EOCi3DsRM="; +} diff --git a/manifests/forc-node-0.35.2.nix b/manifests/forc-node-0.35.2.nix new file mode 100644 index 00000000..4eed7e53 --- /dev/null +++ b/manifests/forc-node-0.35.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.35.2"; + date = "2023-02-17"; + url = "https://github.com/fuellabs/sway"; + rev = "f05ecaf2de1ebe3b3da80ecd8eb6053a84145cf4"; + sha256 = "sha256-FArhyYdJxGWDkJ0gpVufzbMfsQ4ZHiPqQu/9W3mUWco="; +} diff --git a/manifests/forc-node-0.35.3.nix b/manifests/forc-node-0.35.3.nix new file mode 100644 index 00000000..2409ae60 --- /dev/null +++ b/manifests/forc-node-0.35.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.35.3"; + date = "2023-02-21"; + url = "https://github.com/fuellabs/sway"; + rev = "5d2b10bd83791d2eaff04206dbd45bfdd9cf23ff"; + sha256 = "sha256-hHQRdaQR3Qs05VfLc0nJD3lFldGuYTT6XQbszplA3vA="; +} diff --git a/manifests/forc-node-0.35.4.nix b/manifests/forc-node-0.35.4.nix new file mode 100644 index 00000000..063d7c89 --- /dev/null +++ b/manifests/forc-node-0.35.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.35.4"; + date = "2023-03-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3770dd8c21540e54dee818aa5cbc0a6170102695"; + sha256 = "sha256-8e10JdvWKDarXNFk5Oyc1I3+5s108M2ck/yLTIlVI5I="; +} diff --git a/manifests/forc-node-0.35.5.nix b/manifests/forc-node-0.35.5.nix new file mode 100644 index 00000000..08df36da --- /dev/null +++ b/manifests/forc-node-0.35.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.35.5"; + date = "2023-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "49eae2dd93a1957e2a2c2fb3f51b11eb3791fc24"; + sha256 = "sha256-RibkxvZno7nLScV14AwnndbzJ29IWTSFQ/xB4PmO5ZE="; +} diff --git a/manifests/forc-node-0.36.0.nix b/manifests/forc-node-0.36.0.nix new file mode 100644 index 00000000..442e06ff --- /dev/null +++ b/manifests/forc-node-0.36.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.36.0"; + date = "2023-04-04"; + url = "https://github.com/fuellabs/sway"; + rev = "77f575ab7921fdb23d5373072272512264bd99f4"; + sha256 = "sha256-GeQ643/pJahTBmGTtIUl34QH4UCYvfeeQuFXKnlN2Ng="; +} diff --git a/manifests/forc-node-0.36.1.nix b/manifests/forc-node-0.36.1.nix new file mode 100644 index 00000000..f4220b84 --- /dev/null +++ b/manifests/forc-node-0.36.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.36.1"; + date = "2023-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "92818a4d5ec89b5d4fb62196261cf578d58e52e3"; + sha256 = "sha256-F+qUImoSCv8H90IOpmtdIYSmNdLZivkN/Nm7W3oUdM4="; +} diff --git a/manifests/forc-node-0.37.0.nix b/manifests/forc-node-0.37.0.nix new file mode 100644 index 00000000..c905d070 --- /dev/null +++ b/manifests/forc-node-0.37.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.37.0"; + date = "2023-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "607ac50176db8bef936f91bacf435d0ea37d041e"; + sha256 = "sha256-+FrktHUq2mX2u4fl4C9hLrV8fQ9DrSSbpf5umSMHQNw="; +} diff --git a/manifests/forc-node-0.37.1.nix b/manifests/forc-node-0.37.1.nix new file mode 100644 index 00000000..3d9c0b84 --- /dev/null +++ b/manifests/forc-node-0.37.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.37.1"; + date = "2023-04-13"; + url = "https://github.com/fuellabs/sway"; + rev = "83e5479462ed2883591669a42552606ac25f0a04"; + sha256 = "sha256-fR9E77G2Vc+StVZ/whmnan2/hWZFKPjoRJsJHV2MI5k="; +} diff --git a/manifests/forc-node-0.37.2.nix b/manifests/forc-node-0.37.2.nix new file mode 100644 index 00000000..b6dc60c3 --- /dev/null +++ b/manifests/forc-node-0.37.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.37.2"; + date = "2023-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "dc6af913939698452359474c33ecebe0ad35ca48"; + sha256 = "sha256-DA3ryR//UYhbX8nSWiA+UL23TyejhfMzTbmFhDte/OY="; +} diff --git a/manifests/forc-node-0.37.3.nix b/manifests/forc-node-0.37.3.nix new file mode 100644 index 00000000..0e68bd9d --- /dev/null +++ b/manifests/forc-node-0.37.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.37.3"; + date = "2023-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "d09ef912828f5fc7193501ccf8a0d0fb0f36a821"; + sha256 = "sha256-+s9bBrFC5Mun+FwaYS28Wn9nPyxaACAfiW0tuKRPQvg="; +} diff --git a/manifests/forc-node-0.38.0.nix b/manifests/forc-node-0.38.0.nix new file mode 100644 index 00000000..2994d404 --- /dev/null +++ b/manifests/forc-node-0.38.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.38.0"; + date = "2023-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2d16d70ab9d5ab0de0255941048f811b6d07c6b1"; + sha256 = "sha256-xweooodyzG11dWyrrP3MZ6e0vSnkk20svbgbIXkBolw="; +} diff --git a/manifests/forc-node-0.39.0.nix b/manifests/forc-node-0.39.0.nix new file mode 100644 index 00000000..678e34df --- /dev/null +++ b/manifests/forc-node-0.39.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.39.0"; + date = "2023-05-17"; + url = "https://github.com/fuellabs/sway"; + rev = "7a095280e7e1c0bfbbfc201867896e720aab7209"; + sha256 = "sha256-zUzS+IKW2eNbd3L0lArS4BqJ1bkecnxDN62tCIIvYb8="; +} diff --git a/manifests/forc-node-0.39.1.nix b/manifests/forc-node-0.39.1.nix new file mode 100644 index 00000000..f4e39748 --- /dev/null +++ b/manifests/forc-node-0.39.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.39.1"; + date = "2023-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "e3065657c907225a8fdfe2d2210a7a3bd2b55c73"; + sha256 = "sha256-ytLjZOrHW8XkqzwVRoTPNrzozDF1jmYxxKGVxGqS2G4="; +} diff --git a/manifests/forc-node-0.4.0.nix b/manifests/forc-node-0.4.0.nix new file mode 100644 index 00000000..da72fddb --- /dev/null +++ b/manifests/forc-node-0.4.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.4.0"; + date = "2022-02-08"; + url = "https://github.com/fuellabs/sway"; + rev = "6332f9ad955e1f8e744cc87e07d028092874e0d5"; + sha256 = "sha256-lDyAgfNC5ezqptxuM7lycuVEofI5W62hzY011MzXUt8="; +} diff --git a/manifests/forc-node-0.40.0.nix b/manifests/forc-node-0.40.0.nix new file mode 100644 index 00000000..800a9ab5 --- /dev/null +++ b/manifests/forc-node-0.40.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.40.0"; + date = "2023-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "164c7c8bea3ce264581058d4165df71ee761e0b3"; + sha256 = "sha256-J3csh7R4IydBXmq3cY/hbHlVWiXcfhkDA9XLSH8PD58="; +} diff --git a/manifests/forc-node-0.40.1.nix b/manifests/forc-node-0.40.1.nix new file mode 100644 index 00000000..7c6aab82 --- /dev/null +++ b/manifests/forc-node-0.40.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.40.1"; + date = "2023-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "48104d0bde0d343154a5bc39a310092532883235"; + sha256 = "sha256-6qGMJ5W+/b9ZW+IBgvK0FXmDYWk5Yalund1mgb50yPg="; +} diff --git a/manifests/forc-node-0.41.0.nix b/manifests/forc-node-0.41.0.nix new file mode 100644 index 00000000..7c547bc9 --- /dev/null +++ b/manifests/forc-node-0.41.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.41.0"; + date = "2023-06-30"; + url = "https://github.com/fuellabs/sway"; + rev = "0d45b890c9eaa75b88093a9a4cbecbf5ca8c0731"; + sha256 = "sha256-G9KOf1V44mXHMoqhWHUu68NOywE1pcOIhV1eB2DU44g="; +} diff --git a/manifests/forc-node-0.42.0.nix b/manifests/forc-node-0.42.0.nix new file mode 100644 index 00000000..b3bb5f96 --- /dev/null +++ b/manifests/forc-node-0.42.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.42.0"; + date = "2023-07-06"; + url = "https://github.com/fuellabs/sway"; + rev = "c4e4ef7e4ae52a21ae1aa709d1f43ac680987bd1"; + sha256 = "sha256-6kSeffKJqJCA4jpfFSDFOpu/d15qeh4lk/CYp/qd148="; +} diff --git a/manifests/forc-node-0.42.1.nix b/manifests/forc-node-0.42.1.nix new file mode 100644 index 00000000..a7075596 --- /dev/null +++ b/manifests/forc-node-0.42.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.42.1"; + date = "2023-07-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3b66f8e424bd21e3ba467783b10b36e808cfa6ee"; + sha256 = "sha256-lFBConaiCIcElcN35eZH8WW+opGc2bur+UZkw8wPtTw="; +} diff --git a/manifests/forc-node-0.43.0.nix b/manifests/forc-node-0.43.0.nix new file mode 100644 index 00000000..f3e523e2 --- /dev/null +++ b/manifests/forc-node-0.43.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.43.0"; + date = "2023-08-02"; + url = "https://github.com/fuellabs/sway"; + rev = "3efc60e22b4a7b6898b2cb0c678a36fccbe1b9c9"; + sha256 = "sha256-V56LmioCJyq50586GqeveEj79Yd1j859BbYW6yJAuow="; +} diff --git a/manifests/forc-node-0.43.1.nix b/manifests/forc-node-0.43.1.nix new file mode 100644 index 00000000..145162d2 --- /dev/null +++ b/manifests/forc-node-0.43.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.43.1"; + date = "2023-08-03"; + url = "https://github.com/fuellabs/sway"; + rev = "923157bcf1dbda7f3a58effcef22fcccd11fcfbc"; + sha256 = "sha256-/Tr9oexI8EyIQdp45VvaHGGlRc5jyK4B0a/8mUrflnI="; +} diff --git a/manifests/forc-node-0.43.2.nix b/manifests/forc-node-0.43.2.nix new file mode 100644 index 00000000..c9af6931 --- /dev/null +++ b/manifests/forc-node-0.43.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.43.2"; + date = "2023-08-03"; + url = "https://github.com/fuellabs/sway"; + rev = "d8cf6118405164359fdf420c95cd07342e0eca8b"; + sha256 = "sha256-g4u8pGUaxRAZ+t3qo5NamSciWDSeQIKZIORvAUcAFuI="; +} diff --git a/manifests/forc-node-0.44.0.nix b/manifests/forc-node-0.44.0.nix new file mode 100644 index 00000000..5e0f854f --- /dev/null +++ b/manifests/forc-node-0.44.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.44.0"; + date = "2023-08-14"; + url = "https://github.com/fuellabs/sway"; + rev = "241d30f7cde5cdd1f378eb2bc1daae945f329d0c"; + sha256 = "sha256-xYpxwBARtWVgLm9yN50/5olOJ8smGCPYZY8kVbrxXuI="; +} diff --git a/manifests/forc-node-0.44.1.nix b/manifests/forc-node-0.44.1.nix new file mode 100644 index 00000000..99996ee6 --- /dev/null +++ b/manifests/forc-node-0.44.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.44.1"; + date = "2023-08-16"; + url = "https://github.com/fuellabs/sway"; + rev = "04a597093e7441898933dd412b8e4dc6ac860cd3"; + sha256 = "sha256-Up8C2e27cM8UYr52jhxA84tNz0CeFpLepH7A/l025v4="; +} diff --git a/manifests/forc-node-0.45.0.nix b/manifests/forc-node-0.45.0.nix new file mode 100644 index 00000000..c518e031 --- /dev/null +++ b/manifests/forc-node-0.45.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.45.0"; + date = "2023-08-25"; + url = "https://github.com/fuellabs/sway"; + rev = "92dc9f361a9508a940c0d0708130f26fa044f6b3"; + sha256 = "sha256-NUuym7X6HslAVjdq7kPTidzuXlGth+YPY2LBuiokIkw="; +} diff --git a/manifests/forc-node-0.46.0.nix b/manifests/forc-node-0.46.0.nix new file mode 100644 index 00000000..43e051bb --- /dev/null +++ b/manifests/forc-node-0.46.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.46.0"; + date = "2023-09-14"; + url = "https://github.com/fuellabs/sway"; + rev = "e75f14b03636bc96751a6760304a1a6d3eb5937d"; + sha256 = "sha256-mTqo8B7XUbherC9XBpDtlEtjewCxEzn6yC2kmiCFjVI="; +} diff --git a/manifests/forc-node-0.46.1.nix b/manifests/forc-node-0.46.1.nix new file mode 100644 index 00000000..554f4cf9 --- /dev/null +++ b/manifests/forc-node-0.46.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.46.1"; + date = "2023-09-28"; + url = "https://github.com/fuellabs/sway"; + rev = "512a3386f8961185188302f391ccc96553d23a7a"; + sha256 = "sha256-pqoyYzUCeyBL0dy0uCSqaMxcR+yqu7ZBUNIMuyQy0EY="; +} diff --git a/manifests/forc-node-0.47.0.nix b/manifests/forc-node-0.47.0.nix new file mode 100644 index 00000000..c1f7ee22 --- /dev/null +++ b/manifests/forc-node-0.47.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.47.0"; + date = "2023-11-06"; + url = "https://github.com/fuellabs/sway"; + rev = "34265301c6037d51444899a99df1cfc563df6016"; + sha256 = "sha256-lsYDHU3In4tSL8nof1iA+dXemVMP3v56kDJJ+/Tj79A="; +} diff --git a/manifests/forc-node-0.48.0.nix b/manifests/forc-node-0.48.0.nix new file mode 100644 index 00000000..a88aaeb1 --- /dev/null +++ b/manifests/forc-node-0.48.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.48.0"; + date = "2023-12-06"; + url = "https://github.com/fuellabs/sway"; + rev = "e451140ce0a804e00de7936d2f569f1df3ec7b21"; + sha256 = "sha256-gSkH4a213nmk3Tt7UeTBpViLiQnJetVJYekMi/hJEWI="; +} diff --git a/manifests/forc-node-0.48.1.nix b/manifests/forc-node-0.48.1.nix new file mode 100644 index 00000000..e69cd678 --- /dev/null +++ b/manifests/forc-node-0.48.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.48.1"; + date = "2023-12-06"; + url = "https://github.com/fuellabs/sway"; + rev = "6886ef050ce62afd3fe3186ed562fd33bd76bffa"; + sha256 = "sha256-qVwtmDqAut7C0Cx0fngAxXpDOIsMV20xx0Hl8cDw4Dg="; +} diff --git a/manifests/forc-node-0.49.0.nix b/manifests/forc-node-0.49.0.nix new file mode 100644 index 00000000..abc48a25 --- /dev/null +++ b/manifests/forc-node-0.49.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.49.0"; + date = "2024-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "a17fbf3e7d8dc9845458260c343b4d8f006f3633"; + sha256 = "sha256-kNy0O+DO9Xnlv41+gTzELqTaKfaYTkghy+wsLFiHm0Q="; +} diff --git a/manifests/forc-node-0.49.1.nix b/manifests/forc-node-0.49.1.nix new file mode 100644 index 00000000..8630464c --- /dev/null +++ b/manifests/forc-node-0.49.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.49.1"; + date = "2024-01-19"; + url = "https://github.com/fuellabs/sway"; + rev = "2ac7030570f22510b0ac2a7b5ddf7baa20bdc0e1"; + sha256 = "sha256-XPcInwiDCSlwOt5VMYEH3g3hY/o9VvHVvL1q25x2Fkg="; +} diff --git a/manifests/forc-node-0.49.2.nix b/manifests/forc-node-0.49.2.nix new file mode 100644 index 00000000..ca924349 --- /dev/null +++ b/manifests/forc-node-0.49.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.49.2"; + date = "2024-02-02"; + url = "https://github.com/fuellabs/sway"; + rev = "a70c746d27b3300beef896ccd1dcce1299836192"; + sha256 = "sha256-R07m9fTIbsJURYmH1HVFTK87rwp0JwYHnD+vrHH8LTw="; +} diff --git a/manifests/forc-node-0.49.3-patch.1.nix b/manifests/forc-node-0.49.3-patch.1.nix new file mode 100644 index 00000000..ef195d6d --- /dev/null +++ b/manifests/forc-node-0.49.3-patch.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.49.3-patch.1"; + date = "2024-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "0dc6570377ee9c4a6359ade597fa27351e02a728"; + sha256 = "sha256-wqNERqRNtL0OfQPoJqLDFBB8bMiyA1TIAkTpsdPqrAQ="; +} diff --git a/manifests/forc-node-0.49.3.nix b/manifests/forc-node-0.49.3.nix new file mode 100644 index 00000000..83d18f53 --- /dev/null +++ b/manifests/forc-node-0.49.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.49.3"; + date = "2024-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "0dc6570377ee9c4a6359ade597fa27351e02a728"; + sha256 = "sha256-wqNERqRNtL0OfQPoJqLDFBB8bMiyA1TIAkTpsdPqrAQ="; +} diff --git a/manifests/forc-node-0.5.0.nix b/manifests/forc-node-0.5.0.nix new file mode 100644 index 00000000..742af368 --- /dev/null +++ b/manifests/forc-node-0.5.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.5.0"; + date = "2022-02-28"; + url = "https://github.com/fuellabs/sway"; + rev = "5c58c09ffba1719b187a3e1112639eec649eab5e"; + sha256 = "sha256-11OIZruYjYrylHv8zQOfLW9Fzs0p7aGOWQfq7UQN+5w="; +} diff --git a/manifests/forc-node-0.50.0.nix b/manifests/forc-node-0.50.0.nix new file mode 100644 index 00000000..18983fd3 --- /dev/null +++ b/manifests/forc-node-0.50.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.50.0"; + date = "2024-02-07"; + url = "https://github.com/fuellabs/sway"; + rev = "11231184a073a3e9c179d1d2e68c90d205638d45"; + sha256 = "sha256-C3iFrYeTRgfodJjhHL5LlT++2vu0qW9aAQ40T0ixc9I="; +} diff --git a/manifests/forc-node-0.51.0.nix b/manifests/forc-node-0.51.0.nix new file mode 100644 index 00000000..e6f27033 --- /dev/null +++ b/manifests/forc-node-0.51.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.51.0"; + date = "2024-02-22"; + url = "https://github.com/fuellabs/sway"; + rev = "694457da6a507ecee047c1ef8a5865ef4cc07147"; + sha256 = "sha256-tk75ovG3ZxQCe3f13LNLxiBcQT9nf4ZuoIaip0RQgLQ="; +} diff --git a/manifests/forc-node-0.51.1.nix b/manifests/forc-node-0.51.1.nix new file mode 100644 index 00000000..e79fe54e --- /dev/null +++ b/manifests/forc-node-0.51.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.51.1"; + date = "2024-02-23"; + url = "https://github.com/fuellabs/sway"; + rev = "d1e8f019c1da46273c3d3a72b385ce356ba2bc20"; + sha256 = "sha256-bFuBpcZE0CZGmm5wWURhTIZaVSHxL1e0Bs57UhGZWTI="; +} diff --git a/manifests/forc-node-0.52.0.nix b/manifests/forc-node-0.52.0.nix new file mode 100644 index 00000000..3ab1e772 --- /dev/null +++ b/manifests/forc-node-0.52.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.52.0"; + date = "2024-03-27"; + url = "https://github.com/fuellabs/sway"; + rev = "98d8f4cadbac34f232926b9a44b1170ec9da425d"; + sha256 = "sha256-toAWqJlcXknCUsU1+sQefUZKtFdwrBFmmGL8/5TE8NI="; +} diff --git a/manifests/forc-node-0.52.1.nix b/manifests/forc-node-0.52.1.nix new file mode 100644 index 00000000..6cca0447 --- /dev/null +++ b/manifests/forc-node-0.52.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.52.1"; + date = "2024-04-03"; + url = "https://github.com/fuellabs/sway"; + rev = "c1ea517f0522c780ca41120247cde2f450605a3c"; + sha256 = "sha256-PwKDmmPRGMlNqBMrMycdoFFCvBfD6Ly+mimg3AI4sAI="; +} diff --git a/manifests/forc-node-0.53.0.nix b/manifests/forc-node-0.53.0.nix new file mode 100644 index 00000000..94d1f430 --- /dev/null +++ b/manifests/forc-node-0.53.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.53.0"; + date = "2024-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "b30f0e83d3f3d336007e3dfce45a48a87e731345"; + sha256 = "sha256-PYr3xSTIhBNC1RDbr2IVp6HjHydURhCS3cyBZB1jhuY="; +} diff --git a/manifests/forc-node-0.54.0.nix b/manifests/forc-node-0.54.0.nix new file mode 100644 index 00000000..c982a7ed --- /dev/null +++ b/manifests/forc-node-0.54.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.54.0"; + date = "2024-04-13"; + url = "https://github.com/fuellabs/sway"; + rev = "d90cbc8419e47283519e39046c3ea5616e64df84"; + sha256 = "sha256-bI5+vL8dVpAuRMcrznrYhnMUPpax6Q0iC/w7sps3ims="; +} diff --git a/manifests/forc-node-0.55.0.nix b/manifests/forc-node-0.55.0.nix new file mode 100644 index 00000000..4a2972d1 --- /dev/null +++ b/manifests/forc-node-0.55.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.55.0"; + date = "2024-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "60ea55e692f4f70730b500735e13c29df2ac727e"; + sha256 = "sha256-zfIGerybZgEYDqYIWD5r/iQLJFJTzmvoJKqUqmwwF6Q="; +} diff --git a/manifests/forc-node-0.56.0.nix b/manifests/forc-node-0.56.0.nix new file mode 100644 index 00000000..2fd346be --- /dev/null +++ b/manifests/forc-node-0.56.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.56.0"; + date = "2024-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "b495d0df6956524fd68dab7e062df04d2e581ac3"; + sha256 = "sha256-ag0rl2Q0a+J03SRhj4dh19pbvKVt8PJ83XKkRlDq+vo="; +} diff --git a/manifests/forc-node-0.56.1.nix b/manifests/forc-node-0.56.1.nix new file mode 100644 index 00000000..10dc9d9e --- /dev/null +++ b/manifests/forc-node-0.56.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.56.1"; + date = "2024-05-08"; + url = "https://github.com/fuellabs/sway"; + rev = "4a63b41de136ab68bdf396c6720708fbf4dca83e"; + sha256 = "sha256-FW8P8+dujrVbUz1YyL+OSzOmpsDy1Ggaf3S6U4fHDtk="; +} diff --git a/manifests/forc-node-0.57.0.nix b/manifests/forc-node-0.57.0.nix new file mode 100644 index 00000000..623ed294 --- /dev/null +++ b/manifests/forc-node-0.57.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.57.0"; + date = "2024-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "8148817c02b0015ac3f299a8935f9a73d395a35e"; + sha256 = "sha256-jwTGhefYuJybXizPV/TLWQ60JNGSzyexzYTHk4lVDQU="; +} diff --git a/manifests/forc-node-0.58.0.nix b/manifests/forc-node-0.58.0.nix new file mode 100644 index 00000000..3cf10691 --- /dev/null +++ b/manifests/forc-node-0.58.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.58.0"; + date = "2024-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "9579dd2f77c8597995d6d7d2995640c26cfb3fe4"; + sha256 = "sha256-3KqSYUixgLALy+eZWxOyjjwJR/mXpdUaygPGdEnSYlA="; +} diff --git a/manifests/forc-node-0.59.0.nix b/manifests/forc-node-0.59.0.nix new file mode 100644 index 00000000..5bfb4bce --- /dev/null +++ b/manifests/forc-node-0.59.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.59.0"; + date = "2024-05-17"; + url = "https://github.com/fuellabs/sway"; + rev = "d9985d8111f94235edba9a08fc71a9513ec2a95c"; + sha256 = "sha256-eXTLIonA9dyRCed1vUGsR8nrjq7Dm3T/eKdQ95+iqUs="; +} diff --git a/manifests/forc-node-0.6.0.nix b/manifests/forc-node-0.6.0.nix new file mode 100644 index 00000000..70d52abd --- /dev/null +++ b/manifests/forc-node-0.6.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.6.0"; + date = "2022-03-07"; + url = "https://github.com/fuellabs/sway"; + rev = "35e5a2f12e137953b82470e9637e4969ca064e4a"; + sha256 = "sha256-HKmNBduWtyIoaUwkj2Nu9GznUOoZFctcaRhFJOnTWLY="; +} diff --git a/manifests/forc-node-0.6.1.nix b/manifests/forc-node-0.6.1.nix new file mode 100644 index 00000000..983f3f86 --- /dev/null +++ b/manifests/forc-node-0.6.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.6.1"; + date = "2022-03-10"; + url = "https://github.com/fuellabs/sway"; + rev = "3268092ce50e5058b11a5ea2e7f35c6e19352d68"; + sha256 = "sha256-JOH4UosK8x7FmMqx2qkEqWnyO+z9XPl1C/BrnXWz4uw="; +} diff --git a/manifests/forc-node-0.60.0.nix b/manifests/forc-node-0.60.0.nix new file mode 100644 index 00000000..da087e47 --- /dev/null +++ b/manifests/forc-node-0.60.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.60.0"; + date = "2024-05-22"; + url = "https://github.com/fuellabs/sway"; + rev = "2f0392ee35a1e4dd80bd8034962d5b4083dfb8b6"; + sha256 = "sha256-2y1wRiRnY8Z5lgnIeu6BYQFVtJPHmDpaeHZVceeqjiA="; +} diff --git a/manifests/forc-node-0.61.0.nix b/manifests/forc-node-0.61.0.nix new file mode 100644 index 00000000..e6a469f4 --- /dev/null +++ b/manifests/forc-node-0.61.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.61.0"; + date = "2024-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "4b4fb53eb2ef3390a0186a7048b060ff8e973a15"; + sha256 = "sha256-lM9Hzl70uO/QtOhDf6hN4ulOFSo9M5UaVTK22Y6rjJc="; +} diff --git a/manifests/forc-node-0.61.1.nix b/manifests/forc-node-0.61.1.nix new file mode 100644 index 00000000..fe7bedac --- /dev/null +++ b/manifests/forc-node-0.61.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.61.1"; + date = "2024-07-02"; + url = "https://github.com/fuellabs/sway"; + rev = "d86bb863697550b76f9209894e7a4ed84d1a8f39"; + sha256 = "sha256-O/KRqfnTeS2Z01GvCiCzu/Iwg/ccC+Tp/MO9mjY9wf0="; +} diff --git a/manifests/forc-node-0.61.2.nix b/manifests/forc-node-0.61.2.nix new file mode 100644 index 00000000..5e4f1d9c --- /dev/null +++ b/manifests/forc-node-0.61.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.61.2"; + date = "2024-07-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e1b1c2bee73e0ba825e07736cefa6c0abd079595"; + sha256 = "sha256-HOmwpzWp02DkXK+wiL2vCvuOKdFQNlPEvxMLGgfL11I="; +} diff --git a/manifests/forc-node-0.62.0.nix b/manifests/forc-node-0.62.0.nix new file mode 100644 index 00000000..9907b71c --- /dev/null +++ b/manifests/forc-node-0.62.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.62.0"; + date = "2024-07-18"; + url = "https://github.com/fuellabs/sway"; + rev = "efda0397c7bee77de73bd726ec0b732d57614973"; + sha256 = "sha256-24306qdH3UupJ8iGYcCAJRmWow7o/0e1ym7htSRPTjE="; +} diff --git a/manifests/forc-node-0.63.0.nix b/manifests/forc-node-0.63.0.nix new file mode 100644 index 00000000..7e7c7dae --- /dev/null +++ b/manifests/forc-node-0.63.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.63.0"; + date = "2024-08-19"; + url = "https://github.com/fuellabs/sway"; + rev = "da9b3230706bfbe6e4efec179b7ddc0322909b57"; + sha256 = "sha256-P5zhjVT5uwYcdprPN6gZ6UbiML0KLkw4CwNOkBlCIAE="; +} diff --git a/manifests/forc-node-0.63.1.nix b/manifests/forc-node-0.63.1.nix new file mode 100644 index 00000000..7cab6cee --- /dev/null +++ b/manifests/forc-node-0.63.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.63.1"; + date = "2024-08-19"; + url = "https://github.com/fuellabs/sway"; + rev = "169f91ae0a6a698bd1cb459c4c203bab646a38ec"; + sha256 = "sha256-/9medkNesN+JuYEBasGDmhzZEMeCC4PVh2VKrTkb8NI="; +} diff --git a/manifests/forc-node-0.63.2.nix b/manifests/forc-node-0.63.2.nix new file mode 100644 index 00000000..d88b2f03 --- /dev/null +++ b/manifests/forc-node-0.63.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.63.2"; + date = "2024-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "a9e83955bcb50aa1a8b95d04235066b3dd34c9c4"; + sha256 = "sha256-mCFw0F0HC4hrNUdnfMePO1DSWQE/CvKpXbdMwbq4RQQ="; +} diff --git a/manifests/forc-node-0.63.3.nix b/manifests/forc-node-0.63.3.nix new file mode 100644 index 00000000..d251b829 --- /dev/null +++ b/manifests/forc-node-0.63.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.63.3"; + date = "2024-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "f55c81cce61aac31913ac0e87306cbaed7da679a"; + sha256 = "sha256-SLdimVN0rjpKrWcAF3Kg3+DgyGT/zbkvePIdZrayH6Q="; +} diff --git a/manifests/forc-node-0.63.4.nix b/manifests/forc-node-0.63.4.nix new file mode 100644 index 00000000..981b1bd0 --- /dev/null +++ b/manifests/forc-node-0.63.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.63.4"; + date = "2024-09-05"; + url = "https://github.com/fuellabs/sway"; + rev = "2538442a67f893f2e878214ba37a11b51f4ed41e"; + sha256 = "sha256-TA4HerMYUBunE+wyPwYS3z9ziSThJdEAcX81Hx8VZSI="; +} diff --git a/manifests/forc-node-0.63.5.nix b/manifests/forc-node-0.63.5.nix new file mode 100644 index 00000000..fd796fc0 --- /dev/null +++ b/manifests/forc-node-0.63.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.63.5"; + date = "2024-09-06"; + url = "https://github.com/fuellabs/sway"; + rev = "31a1d6f98395f571cd3674b492d9bf4773c55f65"; + sha256 = "sha256-WZkfaz+4mU3TydLoBxoaKdzMCLPq8hISg0GCmFujuh4="; +} diff --git a/manifests/forc-node-0.63.6.nix b/manifests/forc-node-0.63.6.nix new file mode 100644 index 00000000..8587df25 --- /dev/null +++ b/manifests/forc-node-0.63.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.63.6"; + date = "2024-09-18"; + url = "https://github.com/fuellabs/sway"; + rev = "cba9a005ef2a5b61e13eb02ba6e9e93ebd19a31a"; + sha256 = "sha256-9JH/vWzDBAMENzp7gFtSrP68AimsrmqfEhRaS6Aw6TM="; +} diff --git a/manifests/forc-node-0.64.0.nix b/manifests/forc-node-0.64.0.nix new file mode 100644 index 00000000..2a3a18c2 --- /dev/null +++ b/manifests/forc-node-0.64.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.64.0"; + date = "2024-09-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2156bfbbee01ffb85bfca2aae8f185f8e7c715a4"; + sha256 = "sha256-HtzITm4CMH3td35GSGTCzcBzUSjzH/TAu7SwEzjbA3c="; +} diff --git a/manifests/forc-node-0.65.0.nix b/manifests/forc-node-0.65.0.nix new file mode 100644 index 00000000..3645f9ac --- /dev/null +++ b/manifests/forc-node-0.65.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.65.0"; + date = "2024-10-06"; + url = "https://github.com/fuellabs/sway"; + rev = "32d1cc91dc3cf8fbda12fe217e563b139feef8a7"; + sha256 = "sha256-Et4e/N8pKQdrMH9g5ZrAqsk++2n40mv/iTVx4p5PuUM="; +} diff --git a/manifests/forc-node-0.65.1.nix b/manifests/forc-node-0.65.1.nix new file mode 100644 index 00000000..f874eb8b --- /dev/null +++ b/manifests/forc-node-0.65.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.65.1"; + date = "2024-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3a9c171cd43611d7ccad94ab66a5093c6634717b"; + sha256 = "sha256-6KoM3dIOS+6HJ8/mfQtzeX8efrRc3EjcXpU32RAmXiU="; +} diff --git a/manifests/forc-node-0.65.2.nix b/manifests/forc-node-0.65.2.nix new file mode 100644 index 00000000..44bd09c5 --- /dev/null +++ b/manifests/forc-node-0.65.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.65.2"; + date = "2024-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "66bb430395daf5b8f7205f7b9d8d008e2e812d54"; + sha256 = "sha256-J1/9pvWYBdZY4vPd9T0MGsg2g6OtZQG4KWk8QlKVtG8="; +} diff --git a/manifests/forc-node-0.66.0.nix b/manifests/forc-node-0.66.0.nix new file mode 100644 index 00000000..4bc5c14a --- /dev/null +++ b/manifests/forc-node-0.66.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.0"; + date = "2024-10-15"; + url = "https://github.com/fuellabs/sway"; + rev = "b7e59f42aebed08c2e015cbd5d0776c8953fc57f"; + sha256 = "sha256-9iIlZi2eMIcyGylR9mkXANaBcfOJk308f3DArLwjDGM="; +} diff --git a/manifests/forc-node-0.66.1.nix b/manifests/forc-node-0.66.1.nix new file mode 100644 index 00000000..60ad33c6 --- /dev/null +++ b/manifests/forc-node-0.66.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.1"; + date = "2024-10-15"; + url = "https://github.com/fuellabs/sway"; + rev = "d5662c6bd0e5519446aa1b3ebb6af703025accec"; + sha256 = "sha256-Uf8qe94rUZhInAM/o0ue/W5vNW1bpubqYaWt6OVE2Aw="; +} diff --git a/manifests/forc-node-0.66.10.nix b/manifests/forc-node-0.66.10.nix new file mode 100644 index 00000000..e7563876 --- /dev/null +++ b/manifests/forc-node-0.66.10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.10"; + date = "2025-03-11"; + url = "https://github.com/fuellabs/sway"; + rev = "6c00a44822ce2bec4d0754ef285566a8b8de72fb"; + sha256 = "sha256-cfFsArmLkpXUvwO3Jf3KkFYU7MmMyxEbVUEsUvzZtpA="; +} diff --git a/manifests/forc-node-0.66.2.nix b/manifests/forc-node-0.66.2.nix new file mode 100644 index 00000000..e0e18ebd --- /dev/null +++ b/manifests/forc-node-0.66.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.2"; + date = "2024-10-16"; + url = "https://github.com/fuellabs/sway"; + rev = "31486c0b47669612acb7c64d66ecb50aea281282"; + sha256 = "sha256-k/53TarSPDFgljkqMb41ecV+aiqWDNwzZRBoPk4Itps="; +} diff --git a/manifests/forc-node-0.66.3.nix b/manifests/forc-node-0.66.3.nix new file mode 100644 index 00000000..2dce5d52 --- /dev/null +++ b/manifests/forc-node-0.66.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.3"; + date = "2024-10-30"; + url = "https://github.com/fuellabs/sway"; + rev = "5b7d720cf97e88eedc3c069b617ee7493bb16637"; + sha256 = "sha256-35bHX4r/WB3peaTJ5qK2TV3xRtxx5nBxUpDA+4oOlm4="; +} diff --git a/manifests/forc-node-0.66.4.nix b/manifests/forc-node-0.66.4.nix new file mode 100644 index 00000000..012fc3ca --- /dev/null +++ b/manifests/forc-node-0.66.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.4"; + date = "2024-11-03"; + url = "https://github.com/fuellabs/sway"; + rev = "d7dd104dac4394aa7af56f05b720c975744db853"; + sha256 = "sha256-lpX7PSEE+glDj7284dRC7KtU4yIfjRnQZnySaTL+AQc="; +} diff --git a/manifests/forc-node-0.66.5.nix b/manifests/forc-node-0.66.5.nix new file mode 100644 index 00000000..41954698 --- /dev/null +++ b/manifests/forc-node-0.66.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.5"; + date = "2024-11-21"; + url = "https://github.com/fuellabs/sway"; + rev = "94a066652468b4afa3bd396dacef482ed590976b"; + sha256 = "sha256-+8fwP6jkBr5hyzDBZmcAXDq8ciu5PrsZDmDrA8gEzA0="; +} diff --git a/manifests/forc-node-0.66.6.nix b/manifests/forc-node-0.66.6.nix new file mode 100644 index 00000000..31611b0d --- /dev/null +++ b/manifests/forc-node-0.66.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.6"; + date = "2025-01-23"; + url = "https://github.com/fuellabs/sway"; + rev = "986aee2c1e34c9cd958c81e7fd6b84638b26619b"; + sha256 = "sha256-O4pyhoFbxQ5O00OH8DZZTns3l4QGGFvr3gmqanToMD8="; +} diff --git a/manifests/forc-node-0.66.7.nix b/manifests/forc-node-0.66.7.nix new file mode 100644 index 00000000..7e0dda3e --- /dev/null +++ b/manifests/forc-node-0.66.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.7"; + date = "2025-02-05"; + url = "https://github.com/fuellabs/sway"; + rev = "5ed7cec6dbcd42f0c2f84df8511a4c0007b1902e"; + sha256 = "sha256-xuyG/6Kkr4w1lKTb4VkdC/zf5+RaC9HfgOYcsJmV2sc="; +} diff --git a/manifests/forc-node-0.66.8.nix b/manifests/forc-node-0.66.8.nix new file mode 100644 index 00000000..1b0f0328 --- /dev/null +++ b/manifests/forc-node-0.66.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.8"; + date = "2025-03-05"; + url = "https://github.com/fuellabs/sway"; + rev = "ba46576c8601aadf23532de001375879f72f109b"; + sha256 = "sha256-95FNf10T4HmIV2Uj6hHps4SQduIKS7pMEeTgaVxSKQk="; +} diff --git a/manifests/forc-node-0.66.9.nix b/manifests/forc-node-0.66.9.nix new file mode 100644 index 00000000..f97167e3 --- /dev/null +++ b/manifests/forc-node-0.66.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.66.9"; + date = "2025-03-11"; + url = "https://github.com/fuellabs/sway"; + rev = "ef377e78bf597ea3b324f6b021a105b232d1cd98"; + sha256 = "sha256-3yeZrK2+x+apfQ7GyebOT65TgPNqrwB7Wsr+dve6H0Q="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-01.nix b/manifests/forc-node-0.67.0-nightly-2025-04-01.nix new file mode 100644 index 00000000..6f415363 --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-01"; + url = "https://github.com/fuellabs/sway"; + rev = "4eb0705fce706299c8d2efcf967edd58a9679fca"; + sha256 = "sha256-+w495nHeddHIj3hBbl34nE3nnFuEtUZEDefV3uqhyJQ="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-02.nix b/manifests/forc-node-0.67.0-nightly-2025-04-02.nix new file mode 100644 index 00000000..70e54b72 --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-02"; + url = "https://github.com/fuellabs/sway"; + rev = "34aa19ca86fe1b5b5eea87ef0d13708bd62796c2"; + sha256 = "sha256-W3cgYBZ16gmKjHniHklMcaHJqQ2VgK+89uUs217uBP8="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-03.nix b/manifests/forc-node-0.67.0-nightly-2025-04-03.nix new file mode 100644 index 00000000..276b750e --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-03"; + url = "https://github.com/fuellabs/sway"; + rev = "c1b63c87b21452d51d2b3244328d1ca9cb9dc3ef"; + sha256 = "sha256-wf0YdiVZM+lPcm3rN3TxIfz/uesiElQ0BAec2iktleE="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-04.nix b/manifests/forc-node-0.67.0-nightly-2025-04-04.nix new file mode 100644 index 00000000..5be36389 --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-04"; + url = "https://github.com/fuellabs/sway"; + rev = "f11c5cd6cdff86b1bd106cd0fb86604a5d350720"; + sha256 = "sha256-Xjr1c1HAqytooSuDLvtVIoCo1xGB8sxl2O2MNCCcfUY="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-05.nix b/manifests/forc-node-0.67.0-nightly-2025-04-05.nix new file mode 100644 index 00000000..aa118b2b --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "8e162c9661fb566255cad6113a8cfcda8d7d7dca"; + sha256 = "sha256-NojfLZBf5CSPp7JQvgiG1GWfsF9DCYUt5uufOEQJzf8="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-08.nix b/manifests/forc-node-0.67.0-nightly-2025-04-08.nix new file mode 100644 index 00000000..7a64ded1 --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-08"; + url = "https://github.com/fuellabs/sway"; + rev = "b59e1b627d0e8f1f904c28d681ccc66cf2830542"; + sha256 = "sha256-8aMBJhA+64WeAh+JEOkFvAG2F1xI6mBiC7D8ZDOkrrA="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-09.nix b/manifests/forc-node-0.67.0-nightly-2025-04-09.nix new file mode 100644 index 00000000..34ff3344 --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-09"; + url = "https://github.com/fuellabs/sway"; + rev = "1c68f1c9e0cc7ec34a7195e11d92891290aaa8de"; + sha256 = "sha256-m9c+pCaoYwWLQi7cDuMLJm7xqI1PFs/bJ6X/8JN0Wbg="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-10.nix b/manifests/forc-node-0.67.0-nightly-2025-04-10.nix new file mode 100644 index 00000000..151605b9 --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-10"; + url = "https://github.com/fuellabs/sway"; + rev = "4d18d527495483af3c7d81543da347cfaa236147"; + sha256 = "sha256-sMQnl/QZVpkJnOsYDw322ERey+SNB9Fe4nev4Wk/Fro="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-11.nix b/manifests/forc-node-0.67.0-nightly-2025-04-11.nix new file mode 100644 index 00000000..1fbc725d --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "ba3a0d56352ed7a95c7f901ab094954d003e7098"; + sha256 = "sha256-AyhTCZke7FbmJn5O53ZElsUXsQqvfLyf2J7uvluqoNo="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-14.nix b/manifests/forc-node-0.67.0-nightly-2025-04-14.nix new file mode 100644 index 00000000..4d94e32f --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-14"; + url = "https://github.com/fuellabs/sway"; + rev = "f4477cfb909e6d153133df352c147d4ee2ad6f3f"; + sha256 = "sha256-vIoJ8iW3NC278+VnhaSwb7GrcBGIdHmLsbWc6Y53RL0="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-15.nix b/manifests/forc-node-0.67.0-nightly-2025-04-15.nix new file mode 100644 index 00000000..0bdf1baa --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-15"; + url = "https://github.com/fuellabs/sway"; + rev = "8c132f1b56afa491e044147c647bec1059c9ef81"; + sha256 = "sha256-nUp9I2y6b8BVKdlVUD0PWOKrMo0CJynSyyZxd3saav4="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-16.nix b/manifests/forc-node-0.67.0-nightly-2025-04-16.nix new file mode 100644 index 00000000..503e6089 --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-16.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-16"; + url = "https://github.com/fuellabs/sway"; + rev = "ddec15af093f6be7f0ef983dbd1040764c7e2bf8"; + sha256 = "sha256-JLTmnhL1eLG7iynyr0ulHqOllmJH9sdFqb/24KZJeIE="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-17.nix b/manifests/forc-node-0.67.0-nightly-2025-04-17.nix new file mode 100644 index 00000000..f971eed7 --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-17.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-17"; + url = "https://github.com/fuellabs/sway"; + rev = "8c2af95cc36dc034a4e21669ae6b8d5e49eadbca"; + sha256 = "sha256-P0LOySjweT23bu4xycNzUZv6D18IGglouTRERecGDEg="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-18.nix b/manifests/forc-node-0.67.0-nightly-2025-04-18.nix new file mode 100644 index 00000000..c953c28b --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "3afc5c18c87b82ac00ffd38a81de01d534af087b"; + sha256 = "sha256-+MWlXlp7dJXv8gY+qZ8wNvxa8U9u7J1Uhlxl654uw8A="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-20.nix b/manifests/forc-node-0.67.0-nightly-2025-04-20.nix new file mode 100644 index 00000000..125a23bf --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-20"; + url = "https://github.com/fuellabs/sway"; + rev = "7cb78097d0bfbed1e3196639c2aff50a2c02666b"; + sha256 = "sha256-FznW8ID2ykfvqBkCRn96vC3hharM6SWoX6VUpv6OxIM="; +} diff --git a/manifests/forc-node-0.67.0-nightly-2025-04-22.nix b/manifests/forc-node-0.67.0-nightly-2025-04-22.nix new file mode 100644 index 00000000..3a0ac5dc --- /dev/null +++ b/manifests/forc-node-0.67.0-nightly-2025-04-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-04-22"; + url = "https://github.com/fuellabs/sway"; + rev = "f607a674e303bc497887beab06f022127cfd67b7"; + sha256 = "sha256-ABQBvGxHTZX5KzSzg+VXUIVZShBRuSVTDq742WP/Q5I="; +} diff --git a/manifests/forc-node-0.67.0.nix b/manifests/forc-node-0.67.0.nix new file mode 100644 index 00000000..dcd47950 --- /dev/null +++ b/manifests/forc-node-0.67.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.0"; + date = "2025-03-13"; + url = "https://github.com/fuellabs/sway"; + rev = "d821dcb0c7edb1d6e2a772f5a1ccefe38902eaec"; + sha256 = "sha256-PgElgNdhBb/moj5GTMT+uwhWMDOdPzRe37y4V7MTIYc="; +} diff --git a/manifests/forc-node-0.67.1-nightly-2025-04-23.nix b/manifests/forc-node-0.67.1-nightly-2025-04-23.nix new file mode 100644 index 00000000..e125e84a --- /dev/null +++ b/manifests/forc-node-0.67.1-nightly-2025-04-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.1"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "6a896339a688eb4e0ddb2e966e8164f05742ca71"; + sha256 = "sha256-WUkC6JVB1NGHXXvmkHqkhzZ4K+ezhsvpVdqlvAQ3REM="; +} diff --git a/manifests/forc-node-0.67.1.nix b/manifests/forc-node-0.67.1.nix new file mode 100644 index 00000000..593c160d --- /dev/null +++ b/manifests/forc-node-0.67.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.1"; + date = "2025-04-22"; + url = "https://github.com/fuellabs/sway"; + rev = "6a896339a688eb4e0ddb2e966e8164f05742ca71"; + sha256 = "sha256-WUkC6JVB1NGHXXvmkHqkhzZ4K+ezhsvpVdqlvAQ3REM="; +} diff --git a/manifests/forc-node-0.67.2.nix b/manifests/forc-node-0.67.2.nix new file mode 100644 index 00000000..b994822c --- /dev/null +++ b/manifests/forc-node-0.67.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.67.2"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "58a77073382e6992a40f21ed89dc4ea4d46010b1"; + sha256 = "sha256-BcTIuM6CazfMsjmubcuFsL0KC5JaVHyYn2UawLiyosc="; +} diff --git a/manifests/forc-node-0.68.0-nightly-2025-04-24.nix b/manifests/forc-node-0.68.0-nightly-2025-04-24.nix new file mode 100644 index 00000000..82d00a1f --- /dev/null +++ b/manifests/forc-node-0.68.0-nightly-2025-04-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.0"; + date = "2025-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "cbe8005a2388ec481d557aa4a58d7df96be9cad0"; + sha256 = "sha256-Oqp9k6fdhu0jIn/OTcZYwFRGOoL4neFmNkDkS48Nsc0="; +} diff --git a/manifests/forc-node-0.68.0.nix b/manifests/forc-node-0.68.0.nix new file mode 100644 index 00000000..df10c81a --- /dev/null +++ b/manifests/forc-node-0.68.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.0"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "cbe8005a2388ec481d557aa4a58d7df96be9cad0"; + sha256 = "sha256-Oqp9k6fdhu0jIn/OTcZYwFRGOoL4neFmNkDkS48Nsc0="; +} diff --git a/manifests/forc-node-0.68.1-nightly-2025-04-25.nix b/manifests/forc-node-0.68.1-nightly-2025-04-25.nix new file mode 100644 index 00000000..6b1bf50a --- /dev/null +++ b/manifests/forc-node-0.68.1-nightly-2025-04-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.1"; + date = "2025-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "5f999595d377c2de6111836249614bae031d562e"; + sha256 = "sha256-Zfm1ImQ7w8igCFcXduW9rZ2etU/femHbxwPdVNd6/5s="; +} diff --git a/manifests/forc-node-0.68.1-nightly-2025-04-26.nix b/manifests/forc-node-0.68.1-nightly-2025-04-26.nix new file mode 100644 index 00000000..8319e577 --- /dev/null +++ b/manifests/forc-node-0.68.1-nightly-2025-04-26.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.1"; + date = "2025-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "eb57cbf2849ed118f8f403954b545fd4d08a3643"; + sha256 = "sha256-w0r9OpTG1gSYk8xx53VLqA5fP6MzPJ6IWsHQdqwwhis="; +} diff --git a/manifests/forc-node-0.68.1-nightly-2025-04-29.nix b/manifests/forc-node-0.68.1-nightly-2025-04-29.nix new file mode 100644 index 00000000..8e4b4543 --- /dev/null +++ b/manifests/forc-node-0.68.1-nightly-2025-04-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.1"; + date = "2025-04-29"; + url = "https://github.com/fuellabs/sway"; + rev = "76268dcff70744288297a778aae46df77eb5a2a7"; + sha256 = "sha256-7EEPnkERP5rkcekMiBMP8kmh6oBIcCP+NiNn5aGWKCE="; +} diff --git a/manifests/forc-node-0.68.1-nightly-2025-04-30.nix b/manifests/forc-node-0.68.1-nightly-2025-04-30.nix new file mode 100644 index 00000000..318153f4 --- /dev/null +++ b/manifests/forc-node-0.68.1-nightly-2025-04-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.1"; + date = "2025-04-30"; + url = "https://github.com/fuellabs/sway"; + rev = "26e2ef875c10d7bab696c28f2127073422a7da15"; + sha256 = "sha256-qKjgPESiwmz9ZC6rOIvVAsiFkkrc6FBSMC3xwkFZghA="; +} diff --git a/manifests/forc-node-0.68.1-nightly-2025-05-01.nix b/manifests/forc-node-0.68.1-nightly-2025-05-01.nix new file mode 100644 index 00000000..ab5cb7e3 --- /dev/null +++ b/manifests/forc-node-0.68.1-nightly-2025-05-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.1"; + date = "2025-05-01"; + url = "https://github.com/fuellabs/sway"; + rev = "42321ef0e0eef3e4de690759d3d197a21a8a7aa0"; + sha256 = "sha256-tOjGwpoTNuRQvApDngxGrDHDAdao8p8mQ3VVbBJ4Arg="; +} diff --git a/manifests/forc-node-0.68.1.nix b/manifests/forc-node-0.68.1.nix new file mode 100644 index 00000000..3ef76153 --- /dev/null +++ b/manifests/forc-node-0.68.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.1"; + date = "2025-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "7e1bc152face6f1ae20b4274d98446100920e573"; + sha256 = "sha256-ME7GHU+Y9nrVJiI6OaHMyyPcPQYB57afi4/TAmx1Mcs="; +} diff --git a/manifests/forc-node-0.68.2-nightly-2025-05-02.nix b/manifests/forc-node-0.68.2-nightly-2025-05-02.nix new file mode 100644 index 00000000..a7913083 --- /dev/null +++ b/manifests/forc-node-0.68.2-nightly-2025-05-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.2"; + date = "2025-05-02"; + url = "https://github.com/fuellabs/sway"; + rev = "05480bb07ed7b62e4123a2696ba22bce57ffb049"; + sha256 = "sha256-12BK6qvONpLLM37jGY0lDfhHN+JT5TgjQfIueJrkY9E="; +} diff --git a/manifests/forc-node-0.68.2-nightly-2025-05-03.nix b/manifests/forc-node-0.68.2-nightly-2025-05-03.nix new file mode 100644 index 00000000..940cb801 --- /dev/null +++ b/manifests/forc-node-0.68.2-nightly-2025-05-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.2"; + date = "2025-05-03"; + url = "https://github.com/fuellabs/sway"; + rev = "324f04fbab358a8e7eb729d03e0293605755ba5a"; + sha256 = "sha256-0gh3Yi3GUWf6QmXUtVPyIzJd8MjGBJtI5qLUu40txHM="; +} diff --git a/manifests/forc-node-0.68.2-nightly-2025-05-06.nix b/manifests/forc-node-0.68.2-nightly-2025-05-06.nix new file mode 100644 index 00000000..433c033a --- /dev/null +++ b/manifests/forc-node-0.68.2-nightly-2025-05-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.2"; + date = "2025-05-06"; + url = "https://github.com/fuellabs/sway"; + rev = "804d6df0d9c950dbdfc887e2ca6dc39be3abc23a"; + sha256 = "sha256-ioawcNFkhCeo0rMk5xL0gABv7ipkeWha35fS9Z6vlqc="; +} diff --git a/manifests/forc-node-0.68.2-nightly-2025-05-07.nix b/manifests/forc-node-0.68.2-nightly-2025-05-07.nix new file mode 100644 index 00000000..a78f3bf6 --- /dev/null +++ b/manifests/forc-node-0.68.2-nightly-2025-05-07.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.2"; + date = "2025-05-07"; + url = "https://github.com/fuellabs/sway"; + rev = "f635cc22ead32fedc2e0bcb1ed43f51f1c63090f"; + sha256 = "sha256-D6iuParzkjmyMjrUHmemvdtQgbaSaWeFhxQgvwKNhDQ="; +} diff --git a/manifests/forc-node-0.68.2-nightly-2025-05-08.nix b/manifests/forc-node-0.68.2-nightly-2025-05-08.nix new file mode 100644 index 00000000..625b2e29 --- /dev/null +++ b/manifests/forc-node-0.68.2-nightly-2025-05-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.2"; + date = "2025-05-08"; + url = "https://github.com/fuellabs/sway"; + rev = "8fb7a55f2145f2012d2d2df82b790e44a76106a1"; + sha256 = "sha256-Cq9aCSoap1QiqmIDLeqnAP6Uu1vx0A6tsDfD3jVz3W8="; +} diff --git a/manifests/forc-node-0.68.2-nightly-2025-05-09.nix b/manifests/forc-node-0.68.2-nightly-2025-05-09.nix new file mode 100644 index 00000000..90337fc8 --- /dev/null +++ b/manifests/forc-node-0.68.2-nightly-2025-05-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.2"; + date = "2025-05-09"; + url = "https://github.com/fuellabs/sway"; + rev = "bd3813606ad2c4685ae979c7d4443573642c929d"; + sha256 = "sha256-SQX3NYAWZDIGwYpzgx8i+4IWemHPn4Y+L1m4AY7el4Q="; +} diff --git a/manifests/forc-node-0.68.2-nightly-2025-05-10.nix b/manifests/forc-node-0.68.2-nightly-2025-05-10.nix new file mode 100644 index 00000000..1c1d649b --- /dev/null +++ b/manifests/forc-node-0.68.2-nightly-2025-05-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.2"; + date = "2025-05-10"; + url = "https://github.com/fuellabs/sway"; + rev = "dffa29c5994988a2f7202793363c91a9e9476ee9"; + sha256 = "sha256-JXrQ9pL2fCkycFlYl77ZapokfPSLIAsQB3ouApH3jaw="; +} diff --git a/manifests/forc-node-0.68.2-nightly-2025-05-13.nix b/manifests/forc-node-0.68.2-nightly-2025-05-13.nix new file mode 100644 index 00000000..4028e176 --- /dev/null +++ b/manifests/forc-node-0.68.2-nightly-2025-05-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.2"; + date = "2025-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "7386b19846863ae6252800270587815520adc750"; + sha256 = "sha256-xT9wiL5n3PUSOWO0Bu56rhj09inWUNGJBKFuZ+B9y5I="; +} diff --git a/manifests/forc-node-0.68.2.nix b/manifests/forc-node-0.68.2.nix new file mode 100644 index 00000000..8c8438d9 --- /dev/null +++ b/manifests/forc-node-0.68.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.2"; + date = "2025-05-01"; + url = "https://github.com/fuellabs/sway"; + rev = "05480bb07ed7b62e4123a2696ba22bce57ffb049"; + sha256 = "sha256-12BK6qvONpLLM37jGY0lDfhHN+JT5TgjQfIueJrkY9E="; +} diff --git a/manifests/forc-node-0.68.3-nightly-2025-05-14.nix b/manifests/forc-node-0.68.3-nightly-2025-05-14.nix new file mode 100644 index 00000000..11eb9c0f --- /dev/null +++ b/manifests/forc-node-0.68.3-nightly-2025-05-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.3"; + date = "2025-05-14"; + url = "https://github.com/fuellabs/sway"; + rev = "be7a9698b1a751d91045d7492336e10912fdc376"; + sha256 = "sha256-g+EP0CEsXlV6JjehFcZiNDkdXgLEx2qQb9nVSWALJH8="; +} diff --git a/manifests/forc-node-0.68.3.nix b/manifests/forc-node-0.68.3.nix new file mode 100644 index 00000000..486ac055 --- /dev/null +++ b/manifests/forc-node-0.68.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.3"; + date = "2025-05-12"; + url = "https://github.com/fuellabs/sway"; + rev = "48d95fc22eaeb700cf6cc52f17f3087a7a17693a"; + sha256 = "sha256-wJfPIkI0QSyqiiA9Mp+Vq7yfPS+v6+6rAlRlxE10trY="; +} diff --git a/manifests/forc-node-0.68.4-nightly-2025-05-15.nix b/manifests/forc-node-0.68.4-nightly-2025-05-15.nix new file mode 100644 index 00000000..ccb2663c --- /dev/null +++ b/manifests/forc-node-0.68.4-nightly-2025-05-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.4"; + date = "2025-05-15"; + url = "https://github.com/fuellabs/sway"; + rev = "39251b665b110e6cbe85f312135eaeb97738583f"; + sha256 = "sha256-5pAFmTLLHjcINfJHClHQiOAFLAVAF37GilM7P5PSBTc="; +} diff --git a/manifests/forc-node-0.68.4-nightly-2025-05-18.nix b/manifests/forc-node-0.68.4-nightly-2025-05-18.nix new file mode 100644 index 00000000..e7134c42 --- /dev/null +++ b/manifests/forc-node-0.68.4-nightly-2025-05-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.4"; + date = "2025-05-18"; + url = "https://github.com/fuellabs/sway"; + rev = "0e3d949dbf3c7346f990738dba99cdd64f079ffd"; + sha256 = "sha256-kcaCOTbiviYKwT7KWwJAENixqj5FPOukU6SwYfhAF+c="; +} diff --git a/manifests/forc-node-0.68.4-nightly-2025-05-20.nix b/manifests/forc-node-0.68.4-nightly-2025-05-20.nix new file mode 100644 index 00000000..94c43f12 --- /dev/null +++ b/manifests/forc-node-0.68.4-nightly-2025-05-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.4"; + date = "2025-05-20"; + url = "https://github.com/fuellabs/sway"; + rev = "a4283762afbb19720c1976edc3952ea015506f1a"; + sha256 = "sha256-kerOcUFqrRGfWXL9tx2fQoMgvhiqTgJeEsBBOQbfTXM="; +} diff --git a/manifests/forc-node-0.68.4.nix b/manifests/forc-node-0.68.4.nix new file mode 100644 index 00000000..c949d672 --- /dev/null +++ b/manifests/forc-node-0.68.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.4"; + date = "2025-05-14"; + url = "https://github.com/fuellabs/sway"; + rev = "1fb61fdc42054109c54a57544b9aeb88afd3cae8"; + sha256 = "sha256-gMxxjQGCNyB2H9kAvk8BTGpu6PNkUyfFRIjmxBK4Erg="; +} diff --git a/manifests/forc-node-0.68.5-nightly-2025-05-21.nix b/manifests/forc-node-0.68.5-nightly-2025-05-21.nix new file mode 100644 index 00000000..5a122b1f --- /dev/null +++ b/manifests/forc-node-0.68.5-nightly-2025-05-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.5"; + date = "2025-05-21"; + url = "https://github.com/fuellabs/sway"; + rev = "5a95c65b61f098897d8e46f25f722f636fe127e0"; + sha256 = "sha256-NUItVZ/577fYObUjchf5/mKTppuiv9Xxax+omZ1rk7o="; +} diff --git a/manifests/forc-node-0.68.5-nightly-2025-05-23.nix b/manifests/forc-node-0.68.5-nightly-2025-05-23.nix new file mode 100644 index 00000000..a0a1f42c --- /dev/null +++ b/manifests/forc-node-0.68.5-nightly-2025-05-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.5"; + date = "2025-05-23"; + url = "https://github.com/fuellabs/sway"; + rev = "ee565f9145f072001b0cf10f58f838cb2566e934"; + sha256 = "sha256-juA6XgvN12UzmE8Vvfrf0icEeXBqDLEWA2cjRpqZrqU="; +} diff --git a/manifests/forc-node-0.68.5-nightly-2025-05-24.nix b/manifests/forc-node-0.68.5-nightly-2025-05-24.nix new file mode 100644 index 00000000..e77e8d36 --- /dev/null +++ b/manifests/forc-node-0.68.5-nightly-2025-05-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.5"; + date = "2025-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "c8625a029c588fcd8d4ffbfcee08326cfbf5b703"; + sha256 = "sha256-rvhRnyTjJ9bg+swsz0JkwfrPGgoPMvt5Q/xU4H9fuHQ="; +} diff --git a/manifests/forc-node-0.68.5-nightly-2025-05-27.nix b/manifests/forc-node-0.68.5-nightly-2025-05-27.nix new file mode 100644 index 00000000..da605b4a --- /dev/null +++ b/manifests/forc-node-0.68.5-nightly-2025-05-27.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.5"; + date = "2025-05-27"; + url = "https://github.com/fuellabs/sway"; + rev = "d972e423ac65442611cb6bec06693f0cd263b8a6"; + sha256 = "sha256-dE8cXbZzXemKYllz/Kzkss8jyor0qSBH7Hk3irEBc+M="; +} diff --git a/manifests/forc-node-0.68.5-nightly-2025-05-28.nix b/manifests/forc-node-0.68.5-nightly-2025-05-28.nix new file mode 100644 index 00000000..afe20b46 --- /dev/null +++ b/manifests/forc-node-0.68.5-nightly-2025-05-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.5"; + date = "2025-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "f03d5ecdb0e63c66b5391fc907a5a272300a294a"; + sha256 = "sha256-D/xec8B/hC0136GPS+n24aLscvptlTfITYYhGOF9+4A="; +} diff --git a/manifests/forc-node-0.68.5.nix b/manifests/forc-node-0.68.5.nix new file mode 100644 index 00000000..8dd07516 --- /dev/null +++ b/manifests/forc-node-0.68.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.5"; + date = "2025-05-20"; + url = "https://github.com/fuellabs/sway"; + rev = "512bbfccdb15a0045576604ba97d7943c9b7520f"; + sha256 = "sha256-BpBo/uJd52ahBSzRYXpLk3cfNV4hjH3J/ZszRfWCNM0="; +} diff --git a/manifests/forc-node-0.68.6-nightly-2025-05-29.nix b/manifests/forc-node-0.68.6-nightly-2025-05-29.nix new file mode 100644 index 00000000..6b1c6d80 --- /dev/null +++ b/manifests/forc-node-0.68.6-nightly-2025-05-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.6"; + date = "2025-05-29"; + url = "https://github.com/fuellabs/sway"; + rev = "ac5280641599d4e81017e18d04e47380722074ed"; + sha256 = "sha256-ZUYUeHtlLguGmwkdKE/HFgg47zWKhudM8J2JqC44F+Q="; +} diff --git a/manifests/forc-node-0.68.6-nightly-2025-05-30.nix b/manifests/forc-node-0.68.6-nightly-2025-05-30.nix new file mode 100644 index 00000000..8661ec5e --- /dev/null +++ b/manifests/forc-node-0.68.6-nightly-2025-05-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.6"; + date = "2025-05-30"; + url = "https://github.com/fuellabs/sway"; + rev = "2d0021c20bf348aaf5ae7ee41ac8dd610ba48cea"; + sha256 = "sha256-SfAzslGTI61qClSQzDlTI/ymcUJDUnVIR1AvkGnKuGo="; +} diff --git a/manifests/forc-node-0.68.6-nightly-2025-05-31.nix b/manifests/forc-node-0.68.6-nightly-2025-05-31.nix new file mode 100644 index 00000000..aff94380 --- /dev/null +++ b/manifests/forc-node-0.68.6-nightly-2025-05-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.6"; + date = "2025-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "d6804729c962513736253f377f25a323492ded93"; + sha256 = "sha256-bvH+zuVN1AgA5b21X5gkNa5TWYRIWRcZrlJ8KKtIFVU="; +} diff --git a/manifests/forc-node-0.68.6-nightly-2025-06-03.nix b/manifests/forc-node-0.68.6-nightly-2025-06-03.nix new file mode 100644 index 00000000..520b8da1 --- /dev/null +++ b/manifests/forc-node-0.68.6-nightly-2025-06-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.6"; + date = "2025-06-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e1e51fd81fa16872888a6f5ec25b9125181ca89a"; + sha256 = "sha256-j7GLeNt0l5vexHU78M5n9mgDZyYH3CteqMh9yQZ2oDU="; +} diff --git a/manifests/forc-node-0.68.6-nightly-2025-06-04.nix b/manifests/forc-node-0.68.6-nightly-2025-06-04.nix new file mode 100644 index 00000000..0588c4c4 --- /dev/null +++ b/manifests/forc-node-0.68.6-nightly-2025-06-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.6"; + date = "2025-06-04"; + url = "https://github.com/fuellabs/sway"; + rev = "0ac62945305079d94366062f1928293cefbe9dbf"; + sha256 = "sha256-xVyqCswbWWKSjVYWiyH19eFHcRZl/Z2PYxN1G6cZEIk="; +} diff --git a/manifests/forc-node-0.68.6.nix b/manifests/forc-node-0.68.6.nix new file mode 100644 index 00000000..18dc1af3 --- /dev/null +++ b/manifests/forc-node-0.68.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.6"; + date = "2025-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "ac5280641599d4e81017e18d04e47380722074ed"; + sha256 = "sha256-ZUYUeHtlLguGmwkdKE/HFgg47zWKhudM8J2JqC44F+Q="; +} diff --git a/manifests/forc-node-0.68.7-nightly-2025-06-05.nix b/manifests/forc-node-0.68.7-nightly-2025-06-05.nix new file mode 100644 index 00000000..95fe648e --- /dev/null +++ b/manifests/forc-node-0.68.7-nightly-2025-06-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.7"; + date = "2025-06-05"; + url = "https://github.com/fuellabs/sway"; + rev = "58bf38ef9c737edbd677d2e0c5e5f32e8353ea00"; + sha256 = "sha256-1T2N3nbh16xaewOrHjAtnbWvMADJcsT6DToPOmGyh/M="; +} diff --git a/manifests/forc-node-0.68.7-nightly-2025-06-06.nix b/manifests/forc-node-0.68.7-nightly-2025-06-06.nix new file mode 100644 index 00000000..25db86c9 --- /dev/null +++ b/manifests/forc-node-0.68.7-nightly-2025-06-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.7"; + date = "2025-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "fe8a3ef37a8a138e2c6aa583ae9ebb67c876a500"; + sha256 = "sha256-XFndqF78eXbmshZCZsbpKtjEwSEVVR+saxbXdJUTe4k="; +} diff --git a/manifests/forc-node-0.68.7-nightly-2025-06-11.nix b/manifests/forc-node-0.68.7-nightly-2025-06-11.nix new file mode 100644 index 00000000..bef599fe --- /dev/null +++ b/manifests/forc-node-0.68.7-nightly-2025-06-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.7"; + date = "2025-06-11"; + url = "https://github.com/fuellabs/sway"; + rev = "14dc75275479666ddbfc3ade6a70333388a338a9"; + sha256 = "sha256-utIIwK4kzlqWDDYbV5Ord/Xdw1ptb32UJEA7f+w/3SY="; +} diff --git a/manifests/forc-node-0.68.7-nightly-2025-06-12.nix b/manifests/forc-node-0.68.7-nightly-2025-06-12.nix new file mode 100644 index 00000000..962f899d --- /dev/null +++ b/manifests/forc-node-0.68.7-nightly-2025-06-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.7"; + date = "2025-06-12"; + url = "https://github.com/fuellabs/sway"; + rev = "0e24afdc4fc4e7d8b463a9f264cc68d0e1522655"; + sha256 = "sha256-5TnV7w7vg/WYp5WEh0LszwUR0UHH0oFHPXq+iKsGuGM="; +} diff --git a/manifests/forc-node-0.68.7-nightly-2025-06-14.nix b/manifests/forc-node-0.68.7-nightly-2025-06-14.nix new file mode 100644 index 00000000..6e0e3ab0 --- /dev/null +++ b/manifests/forc-node-0.68.7-nightly-2025-06-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.7"; + date = "2025-06-14"; + url = "https://github.com/fuellabs/sway"; + rev = "e0724422c6a867b15c1ff0e3f1bf85f445bc59e4"; + sha256 = "sha256-9GtBz+XdwsKpipMJh3wHIcky7N+5wXXeGpM51K++7bc="; +} diff --git a/manifests/forc-node-0.68.7-nightly-2025-06-18.nix b/manifests/forc-node-0.68.7-nightly-2025-06-18.nix new file mode 100644 index 00000000..788faf5e --- /dev/null +++ b/manifests/forc-node-0.68.7-nightly-2025-06-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.7"; + date = "2025-06-18"; + url = "https://github.com/fuellabs/sway"; + rev = "cd89f62ece16b3d4ff37dbbd07d68ec056f18a6e"; + sha256 = "sha256-FRhXivoZUnUDbY0XRh7/XXyz0D2KHycu/vtZeGjctTY="; +} diff --git a/manifests/forc-node-0.68.7-nightly-2025-06-19.nix b/manifests/forc-node-0.68.7-nightly-2025-06-19.nix new file mode 100644 index 00000000..3c0f86c0 --- /dev/null +++ b/manifests/forc-node-0.68.7-nightly-2025-06-19.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.7"; + date = "2025-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "b9ac2a9bdb2069b1c70637be4e2d4ae93361c73f"; + sha256 = "sha256-yxzmVuW3N7RV7L6qNDgA/2UMR3qjvwa3fCbRQLFXNnM="; +} diff --git a/manifests/forc-node-0.68.7.nix b/manifests/forc-node-0.68.7.nix new file mode 100644 index 00000000..0d17bf85 --- /dev/null +++ b/manifests/forc-node-0.68.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.7"; + date = "2025-06-04"; + url = "https://github.com/fuellabs/sway"; + rev = "58bf38ef9c737edbd677d2e0c5e5f32e8353ea00"; + sha256 = "sha256-1T2N3nbh16xaewOrHjAtnbWvMADJcsT6DToPOmGyh/M="; +} diff --git a/manifests/forc-node-0.68.8-nightly-2025-06-20.nix b/manifests/forc-node-0.68.8-nightly-2025-06-20.nix new file mode 100644 index 00000000..3f96bae8 --- /dev/null +++ b/manifests/forc-node-0.68.8-nightly-2025-06-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.8"; + date = "2025-06-20"; + url = "https://github.com/fuellabs/sway"; + rev = "b2028431508c0ff64b97de4998a15d214b56e0eb"; + sha256 = "sha256-nbUx/CRvR/k/o14fduZNy+aE8g7bfiNTq6GHD2T7pJI="; +} diff --git a/manifests/forc-node-0.68.8-nightly-2025-06-22.nix b/manifests/forc-node-0.68.8-nightly-2025-06-22.nix new file mode 100644 index 00000000..018f1276 --- /dev/null +++ b/manifests/forc-node-0.68.8-nightly-2025-06-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.8"; + date = "2025-06-22"; + url = "https://github.com/fuellabs/sway"; + rev = "83154ab6615d70479a11df50e7ea25733a8222cc"; + sha256 = "sha256-LiIlx3TwVKWegJNHnd942lPTtW9ImkPxBQULb3FCH2I="; +} diff --git a/manifests/forc-node-0.68.8.nix b/manifests/forc-node-0.68.8.nix new file mode 100644 index 00000000..0c38b640 --- /dev/null +++ b/manifests/forc-node-0.68.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.8"; + date = "2025-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "93ae73db745a60dfd782b340ca21804bdde54aeb"; + sha256 = "sha256-JwKPK9Dyjb/ZgVwz2+7hybLzU6PqY8KKBz8MMQeyJVQ="; +} diff --git a/manifests/forc-node-0.68.9.nix b/manifests/forc-node-0.68.9.nix new file mode 100644 index 00000000..865620a5 --- /dev/null +++ b/manifests/forc-node-0.68.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.68.9"; + date = "2025-06-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e054b396280942cb43a40bbc0b3a9b8cc30237ed"; + sha256 = "sha256-a+P/SqwMkQ0aDbaJH9VWNSxbvDBl4v6S5yb6HMuXABY="; +} diff --git a/manifests/forc-node-0.69.0-nightly-2025-06-24.nix b/manifests/forc-node-0.69.0-nightly-2025-06-24.nix new file mode 100644 index 00000000..e011ec2c --- /dev/null +++ b/manifests/forc-node-0.69.0-nightly-2025-06-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-06-24"; + url = "https://github.com/fuellabs/sway"; + rev = "5c22e3398756548f8b6dbbe32c6dbd7d6d77451c"; + sha256 = "sha256-0HIFZcZQvA/QxJNkBTQyMLSapTjFhUQAaUyRY3ZdA9M="; +} diff --git a/manifests/forc-node-0.69.0-nightly-2025-06-28.nix b/manifests/forc-node-0.69.0-nightly-2025-06-28.nix new file mode 100644 index 00000000..955e88aa --- /dev/null +++ b/manifests/forc-node-0.69.0-nightly-2025-06-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-06-28"; + url = "https://github.com/fuellabs/sway"; + rev = "c37dc92952247c1366d26702e6f72ee1dc77d046"; + sha256 = "sha256-ilGTFqb+5/rI8ya8E0K+BHR8Us3cVKuAOjOOdv9bXMU="; +} diff --git a/manifests/forc-node-0.69.0-nightly-2025-07-01.nix b/manifests/forc-node-0.69.0-nightly-2025-07-01.nix new file mode 100644 index 00000000..ec2d8998 --- /dev/null +++ b/manifests/forc-node-0.69.0-nightly-2025-07-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-07-01"; + url = "https://github.com/fuellabs/sway"; + rev = "0cae7a31951587aa2787e622b5fb25527ed035d8"; + sha256 = "sha256-vKMgZWr3/YNVWhprR+I5ZADfIjv8H270ED2EA2g5Ljs="; +} diff --git a/manifests/forc-node-0.69.0-nightly-2025-07-02.nix b/manifests/forc-node-0.69.0-nightly-2025-07-02.nix new file mode 100644 index 00000000..2a3a77ef --- /dev/null +++ b/manifests/forc-node-0.69.0-nightly-2025-07-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-07-02"; + url = "https://github.com/fuellabs/sway"; + rev = "73fb34320e61b0a01f5c8375dfaeb534871b0586"; + sha256 = "sha256-cCSC9W5FbByd263qSq/WUqHm26x50KS1tTbV2Y6htIg="; +} diff --git a/manifests/forc-node-0.69.0-nightly-2025-07-05.nix b/manifests/forc-node-0.69.0-nightly-2025-07-05.nix new file mode 100644 index 00000000..8873c1c9 --- /dev/null +++ b/manifests/forc-node-0.69.0-nightly-2025-07-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-07-05"; + url = "https://github.com/fuellabs/sway"; + rev = "b54fce7727d1d07c6fa38d8aeaf8db821a78c0f3"; + sha256 = "sha256-4ZHUtGtlY+SI/MXU6MpwraFr4DzmVzW+/FFmqENS/qk="; +} diff --git a/manifests/forc-node-0.69.0-nightly-2025-07-08.nix b/manifests/forc-node-0.69.0-nightly-2025-07-08.nix new file mode 100644 index 00000000..5e54cbc6 --- /dev/null +++ b/manifests/forc-node-0.69.0-nightly-2025-07-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-07-08"; + url = "https://github.com/fuellabs/sway"; + rev = "5ca3dcab93f0064f47438927fad8899ade888e9b"; + sha256 = "sha256-EJ5+cQolHJeY5GXRFggq9i4ocHfEdYwJLCfRmDVTDcU="; +} diff --git a/manifests/forc-node-0.69.0-nightly-2025-07-10.nix b/manifests/forc-node-0.69.0-nightly-2025-07-10.nix new file mode 100644 index 00000000..dae27740 --- /dev/null +++ b/manifests/forc-node-0.69.0-nightly-2025-07-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-07-10"; + url = "https://github.com/fuellabs/sway"; + rev = "403a7e5780f5328c83bcf349a3f67189be158eea"; + sha256 = "sha256-dCOgyZ0fvH1q95Ibtm5MBn9MDAGfycbPpovGiYsYPo0="; +} diff --git a/manifests/forc-node-0.69.0-nightly-2025-07-12.nix b/manifests/forc-node-0.69.0-nightly-2025-07-12.nix new file mode 100644 index 00000000..b5a053d7 --- /dev/null +++ b/manifests/forc-node-0.69.0-nightly-2025-07-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-07-12"; + url = "https://github.com/fuellabs/sway"; + rev = "8b7524666b3349d5c51f2b9d2910f1ee9e20c3ff"; + sha256 = "sha256-n0VxAxi4ZcApi8Fxs+jd6t/Z4S1WWiSgoSxo0t4HO/0="; +} diff --git a/manifests/forc-node-0.69.0-nightly-2025-07-13.nix b/manifests/forc-node-0.69.0-nightly-2025-07-13.nix new file mode 100644 index 00000000..77d4a263 --- /dev/null +++ b/manifests/forc-node-0.69.0-nightly-2025-07-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-07-13"; + url = "https://github.com/fuellabs/sway"; + rev = "74092cbbcdd11d39c184097e10a34d2104c55209"; + sha256 = "sha256-WItCuXu1VzuDvH5PAkNoP96O+5Iv+ANZ/tY/Mu3bU2I="; +} diff --git a/manifests/forc-node-0.69.0.nix b/manifests/forc-node-0.69.0.nix new file mode 100644 index 00000000..3cd19452 --- /dev/null +++ b/manifests/forc-node-0.69.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.0"; + date = "2025-06-23"; + url = "https://github.com/fuellabs/sway"; + rev = "5c22e3398756548f8b6dbbe32c6dbd7d6d77451c"; + sha256 = "sha256-0HIFZcZQvA/QxJNkBTQyMLSapTjFhUQAaUyRY3ZdA9M="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-07-18.nix b/manifests/forc-node-0.69.1-nightly-2025-07-18.nix new file mode 100644 index 00000000..4ec15873 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-07-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-18"; + url = "https://github.com/fuellabs/sway"; + rev = "b68a3861db866f33078b3c966eaf5b3379e716cf"; + sha256 = "sha256-k4WlC6P7kXANf2kwJg8j9W1tMpW8ds74pVB2waDELzY="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-07-19.nix b/manifests/forc-node-0.69.1-nightly-2025-07-19.nix new file mode 100644 index 00000000..bdcdbecf --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-07-19.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-19"; + url = "https://github.com/fuellabs/sway"; + rev = "03398522890e7b99511ec45343613de20b6edcd6"; + sha256 = "sha256-eV3/Qeg+8YReAM9/hCd7kcZd9Yve0dXgaNBa3Vnf8ao="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-07-21.nix b/manifests/forc-node-0.69.1-nightly-2025-07-21.nix new file mode 100644 index 00000000..0e1df941 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-07-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-21"; + url = "https://github.com/fuellabs/sway"; + rev = "926cb4d098fd57da46e28ddd043af2d55b094ce1"; + sha256 = "sha256-j03PiBlN+LY3a9JwaxBN2LgFVYNzb4c9omhhNclXDKo="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-07-22.nix b/manifests/forc-node-0.69.1-nightly-2025-07-22.nix new file mode 100644 index 00000000..f6386d9c --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-07-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-22"; + url = "https://github.com/fuellabs/sway"; + rev = "d8536d384f63c5ed4a4800b995e0b278be23c232"; + sha256 = "sha256-7KNnQuOE52zoQmJ33nnjloRXWh24r0Fg/uWHAozOaek="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-07-23.nix b/manifests/forc-node-0.69.1-nightly-2025-07-23.nix new file mode 100644 index 00000000..a0dc8e08 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-07-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-23"; + url = "https://github.com/fuellabs/sway"; + rev = "a5e61488daff5db9a262173dcd0d4a78cb9e90cd"; + sha256 = "sha256-1wiGWfXw3lCWH4MijZ7xk6oQ9OnmKSd6LX3Say7T4QE="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-07-24.nix b/manifests/forc-node-0.69.1-nightly-2025-07-24.nix new file mode 100644 index 00000000..3c4e9399 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-07-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-24"; + url = "https://github.com/fuellabs/sway"; + rev = "22d858682b2ff06f01a3d74b1646508a00d623ac"; + sha256 = "sha256-QwBRrzuNNnfT/xBsq+bF4IK6Y67WqBUQVWxRYhuEdjc="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-07-25.nix b/manifests/forc-node-0.69.1-nightly-2025-07-25.nix new file mode 100644 index 00000000..ff381fc2 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-07-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-25"; + url = "https://github.com/fuellabs/sway"; + rev = "4c9c4c29bfcda957cf58e1f6c6ed711c09334117"; + sha256 = "sha256-HEIgNOxMuTTCHcZrNH1SlBO4bNFcG6rVkKvPGXOTk/I="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-07-30.nix b/manifests/forc-node-0.69.1-nightly-2025-07-30.nix new file mode 100644 index 00000000..b7dc3848 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-07-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-30"; + url = "https://github.com/fuellabs/sway"; + rev = "32dcbaa2431bbdaa0f40e4fc8c61d51c7e765967"; + sha256 = "sha256-b12wpFXPX1wDAlpJbQpQjpycanhR0gt5mNR4nePL0ek="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-07-31.nix b/manifests/forc-node-0.69.1-nightly-2025-07-31.nix new file mode 100644 index 00000000..52ef097f --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-07-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-31"; + url = "https://github.com/fuellabs/sway"; + rev = "c7ff31207a535386431afcd468c70592ec5ffa31"; + sha256 = "sha256-Pj7+7QlL/ftL3ZK7KrmA1XZb/ws1LAUhr5A+e2DdBQo="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-01.nix b/manifests/forc-node-0.69.1-nightly-2025-08-01.nix new file mode 100644 index 00000000..77e39459 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-01"; + url = "https://github.com/fuellabs/sway"; + rev = "8b29cc39c52cf7a3fd7857290f9741334923d362"; + sha256 = "sha256-jtCaouazr3gN9MKoqkH3okGnqo3AXzhue4Lwdt3rK8Q="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-02.nix b/manifests/forc-node-0.69.1-nightly-2025-08-02.nix new file mode 100644 index 00000000..42ba3427 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-02"; + url = "https://github.com/fuellabs/sway"; + rev = "05e667dfc973f8aa26ab2081dc53ea804b7bf94e"; + sha256 = "sha256-EpdlAE9+PuaVZu29+oXFo2ir29m+62GCImj1DLzIr1E="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-06.nix b/manifests/forc-node-0.69.1-nightly-2025-08-06.nix new file mode 100644 index 00000000..091dda1b --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-06"; + url = "https://github.com/fuellabs/sway"; + rev = "56e0c10a3a37055741b16d38710b4c0ab78277af"; + sha256 = "sha256-yI6H6cLYHem79lHcyVFEh0ZTPPC7Es5VFrCNK5sU98A="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-08.nix b/manifests/forc-node-0.69.1-nightly-2025-08-08.nix new file mode 100644 index 00000000..c80de0d6 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-08"; + url = "https://github.com/fuellabs/sway"; + rev = "fb6ea52a964dc3b6b8deaafb93ae2779d2822f10"; + sha256 = "sha256-VmIWWWoJPkMmLRLHvGt/UP2+EGdQt0d8vU+zDPk7mZ4="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-09.nix b/manifests/forc-node-0.69.1-nightly-2025-08-09.nix new file mode 100644 index 00000000..cdab477b --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-09"; + url = "https://github.com/fuellabs/sway"; + rev = "95130c4172e5e4986e3eefe8f597f1d1faa025ce"; + sha256 = "sha256-NyLtu7U9wLLg2uTPVmxyLMNjhQjqnTemDtbtTeEGhS0="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-14.nix b/manifests/forc-node-0.69.1-nightly-2025-08-14.nix new file mode 100644 index 00000000..ed566ce1 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-14"; + url = "https://github.com/fuellabs/sway"; + rev = "5d5ca3494954451e2b8799d7165d34516efe8d52"; + sha256 = "sha256-H63IGp3TEjidtyDq1bi64486mfvT8c1TPSIpmexWYqs="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-15.nix b/manifests/forc-node-0.69.1-nightly-2025-08-15.nix new file mode 100644 index 00000000..91d8efef --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-15"; + url = "https://github.com/fuellabs/sway"; + rev = "fe9bbe39b9f06d455c8d5be403dd120a42d6a54c"; + sha256 = "sha256-xMinksVvWu2HgCCMoZJIBAS3yyuMxsgSVaFxJytLqtQ="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-20.nix b/manifests/forc-node-0.69.1-nightly-2025-08-20.nix new file mode 100644 index 00000000..b8508e2c --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-20"; + url = "https://github.com/fuellabs/sway"; + rev = "f036d4c45f730676608bd0bbe0f0e68d11af6fca"; + sha256 = "sha256-1wSq/TNkumriBbfawPUAB/30utkpox45uI/Pw3GyhvM="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-21.nix b/manifests/forc-node-0.69.1-nightly-2025-08-21.nix new file mode 100644 index 00000000..cd0c9dc6 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-21"; + url = "https://github.com/fuellabs/sway"; + rev = "f59835a78a87502d1aef8bb8be61c7a6517c0210"; + sha256 = "sha256-2R+qajT3WPKinp1liG5/Ef220Q+PH4+Ypml6TsVp44Q="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-23.nix b/manifests/forc-node-0.69.1-nightly-2025-08-23.nix new file mode 100644 index 00000000..b15d1a34 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-23"; + url = "https://github.com/fuellabs/sway"; + rev = "b2c965e6970e1c8079ef77f359b14957a39e5546"; + sha256 = "sha256-vDtXSpLsam7EOPHND9xa+QVCN0CcelXtVsx98DnDCDg="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-24.nix b/manifests/forc-node-0.69.1-nightly-2025-08-24.nix new file mode 100644 index 00000000..8e2951e0 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-24"; + url = "https://github.com/fuellabs/sway"; + rev = "be5871da225d79dc2f3325788033ddb49e42928f"; + sha256 = "sha256-V1pUYHa1dVmGURn96EcU3J9I8lPHL5TQkZhWNsxazhU="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-25.nix b/manifests/forc-node-0.69.1-nightly-2025-08-25.nix new file mode 100644 index 00000000..ef69e55c --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-25"; + url = "https://github.com/fuellabs/sway"; + rev = "a347631478939613690c303d2f636506e4c44b0f"; + sha256 = "sha256-CVIBdk6+o6CY95cnVApwJ3zGJxx7mWpEzZFNoUU5vL8="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-27.nix b/manifests/forc-node-0.69.1-nightly-2025-08-27.nix new file mode 100644 index 00000000..3f860d25 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-27.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-27"; + url = "https://github.com/fuellabs/sway"; + rev = "8be2dae76b6c6c7fa1dc6ba7cc58e55c00abb573"; + sha256 = "sha256-SyHl1eMG9fcxs7xfLwLrk4MbyuROeyr12Xh2rMfhr2E="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-28.nix b/manifests/forc-node-0.69.1-nightly-2025-08-28.nix new file mode 100644 index 00000000..30d10117 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "8cb7c57344d230258222110e22fef54e8bdef165"; + sha256 = "sha256-VA51UnSCNxSJAvcXJPV5hMLr7jPi0d9hHz/rL/YgZTc="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-29.nix b/manifests/forc-node-0.69.1-nightly-2025-08-29.nix new file mode 100644 index 00000000..28d9e355 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-29"; + url = "https://github.com/fuellabs/sway"; + rev = "d49cf8e92c9b5512c471571d135dc546fc456ac9"; + sha256 = "sha256-xOEmt3raPrVXhQvMqbqmmudbSxLTC0r7ne5GMjQJkJE="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-30.nix b/manifests/forc-node-0.69.1-nightly-2025-08-30.nix new file mode 100644 index 00000000..dd02ad6c --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-30"; + url = "https://github.com/fuellabs/sway"; + rev = "84e575ab5266b1103457bbca61b047a967c3d116"; + sha256 = "sha256-isNB7/VsDsBCXnyhWEgyOuHHMydLd3fjUD0sqV+7xuE="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-08-31.nix b/manifests/forc-node-0.69.1-nightly-2025-08-31.nix new file mode 100644 index 00000000..7f724171 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-08-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "0aef56aa59abf7669d1b159a645b848b2721ee11"; + sha256 = "sha256-39FRxaXFWIsvVjwid77rjIOAMXA16WDuWnc2gT6kYZU="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-03.nix b/manifests/forc-node-0.69.1-nightly-2025-09-03.nix new file mode 100644 index 00000000..9d16fe9b --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-03"; + url = "https://github.com/fuellabs/sway"; + rev = "1e04b80c3a25e475023b978a5987686de962eb49"; + sha256 = "sha256-AMmx1suCuWuywmHiZahhBQM9vqnCvsUSOTIhgRPVrF8="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-04.nix b/manifests/forc-node-0.69.1-nightly-2025-09-04.nix new file mode 100644 index 00000000..876581da --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-04"; + url = "https://github.com/fuellabs/sway"; + rev = "c58ddbc57f716dcbbc9debed941b0c378ee800bc"; + sha256 = "sha256-TiufOKOHYgVJMsk9yYJSDNI5UH4pK2qSZQQYCWlL9tU="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-05.nix b/manifests/forc-node-0.69.1-nightly-2025-09-05.nix new file mode 100644 index 00000000..b40c0d02 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-05"; + url = "https://github.com/fuellabs/sway"; + rev = "1f9880f60d288f36b623309b601da404792acbda"; + sha256 = "sha256-oZfoMFSTBuQji+d4OKqo07/f2cGKsJ7ZqP7y9cTwhQc="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-07.nix b/manifests/forc-node-0.69.1-nightly-2025-09-07.nix new file mode 100644 index 00000000..88e671b6 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-07.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-07"; + url = "https://github.com/fuellabs/sway"; + rev = "c2696d6c7b359ae014edf96b29e623f4ddcac0ee"; + sha256 = "sha256-MCV+t/k/JHE4vvOqhRzpiMap/pdfP57tZw7WzA8J+l4="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-09.nix b/manifests/forc-node-0.69.1-nightly-2025-09-09.nix new file mode 100644 index 00000000..40c71b3c --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-09"; + url = "https://github.com/fuellabs/sway"; + rev = "6981d3dc884e8b2033509d40e4e9c9b888b82936"; + sha256 = "sha256-xaA/J8nptOBPkVtw8Jqk24z0KMA1/1TA+b7b9p3ZNco="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-11.nix b/manifests/forc-node-0.69.1-nightly-2025-09-11.nix new file mode 100644 index 00000000..b32898a7 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-11"; + url = "https://github.com/fuellabs/sway"; + rev = "b552ba17c8a1b0f9d46fdaeb808879060f8ba1f4"; + sha256 = "sha256-c+gs8HsPM2LGcu+I0PD7Sqys/9bbaGDNP59Kqx32PLI="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-12.nix b/manifests/forc-node-0.69.1-nightly-2025-09-12.nix new file mode 100644 index 00000000..6acbe2ac --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-12"; + url = "https://github.com/fuellabs/sway"; + rev = "608fc526adea252edf37c8512e3151f555b69aa7"; + sha256 = "sha256-mNWc0PgsO5V0kyi5hPCNzZhmhYAsdrEVMJbZZ1y+cZs="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-13.nix b/manifests/forc-node-0.69.1-nightly-2025-09-13.nix new file mode 100644 index 00000000..06bffd50 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-13"; + url = "https://github.com/fuellabs/sway"; + rev = "4f1af4316a019aca20fdbe4fca862b2006457cb3"; + sha256 = "sha256-FTVhC6xAxhaWh5qtuzHG6P5U6Oy8HyEjQZroL8gk6vk="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-17.nix b/manifests/forc-node-0.69.1-nightly-2025-09-17.nix new file mode 100644 index 00000000..99a0d933 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-17.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-17"; + url = "https://github.com/fuellabs/sway"; + rev = "6553dce5a2765362cdfe772d989240198c87f5dd"; + sha256 = "sha256-8zEV6A6+hlvzqVU8AqLr7G3R2rEs1vw9gkpcj1WfhNw="; +} diff --git a/manifests/forc-node-0.69.1-nightly-2025-09-22.nix b/manifests/forc-node-0.69.1-nightly-2025-09-22.nix new file mode 100644 index 00000000..ac3b8718 --- /dev/null +++ b/manifests/forc-node-0.69.1-nightly-2025-09-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-09-22"; + url = "https://github.com/fuellabs/sway"; + rev = "e4672e3e1794e31eb53cf83c1821890b8c876a16"; + sha256 = "sha256-zevCtBXQmNriCMBNmpagzVnxD+9S7aQA4Qa+sHSLnw4="; +} diff --git a/manifests/forc-node-0.69.1.nix b/manifests/forc-node-0.69.1.nix new file mode 100644 index 00000000..b3eace48 --- /dev/null +++ b/manifests/forc-node-0.69.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.1"; + date = "2025-07-17"; + url = "https://github.com/fuellabs/sway"; + rev = "b68a3861db866f33078b3c966eaf5b3379e716cf"; + sha256 = "sha256-k4WlC6P7kXANf2kwJg8j9W1tMpW8ds74pVB2waDELzY="; +} diff --git a/manifests/forc-node-0.69.2-nightly-2025-09-23.nix b/manifests/forc-node-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..528c893f --- /dev/null +++ b/manifests/forc-node-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-node-0.69.2.nix b/manifests/forc-node-0.69.2.nix new file mode 100644 index 00000000..528c893f --- /dev/null +++ b/manifests/forc-node-0.69.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-node-0.7.0.nix b/manifests/forc-node-0.7.0.nix new file mode 100644 index 00000000..b9565c24 --- /dev/null +++ b/manifests/forc-node-0.7.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.7.0"; + date = "2022-03-22"; + url = "https://github.com/fuellabs/sway"; + rev = "7dd186041fbd2d4040b9a374fedc9a0cbed9eecb"; + sha256 = "sha256-B37FgsnDop9Vyn5t7aSn2RceGG3pdLxrHUJHZ2s53d8="; +} diff --git a/manifests/forc-node-0.8.0.nix b/manifests/forc-node-0.8.0.nix new file mode 100644 index 00000000..331fa57e --- /dev/null +++ b/manifests/forc-node-0.8.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.8.0"; + date = "2022-03-25"; + url = "https://github.com/fuellabs/sway"; + rev = "04d26d6924788875fb01fa4fe58fe969849dcfc5"; + sha256 = "sha256-MTQlnuP9WVHL/rNHsMdmYqvIgHL5IJmIjUF9WqM55M0="; +} diff --git a/manifests/forc-node-0.9.0.nix b/manifests/forc-node-0.9.0.nix new file mode 100644 index 00000000..97df3b31 --- /dev/null +++ b/manifests/forc-node-0.9.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.9.0"; + date = "2022-03-28"; + url = "https://github.com/fuellabs/sway"; + rev = "fdebe28e2803ef32238e6b39693748b6bdf6f34e"; + sha256 = "sha256-dzEkvJ+nP6+Xzp+nVz+VKy0RmfN/UkX/JlP/0cXqaY0="; +} diff --git a/manifests/forc-node-0.9.1.nix b/manifests/forc-node-0.9.1.nix new file mode 100644 index 00000000..35dd1575 --- /dev/null +++ b/manifests/forc-node-0.9.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.9.1"; + date = "2022-03-29"; + url = "https://github.com/fuellabs/sway"; + rev = "72aa51d6da3d49b1bad2e6d6fffe6d4b3e331380"; + sha256 = "sha256-Mu3niggbgovHWhm6GtU/hhWqANm5YWFvdsrDExUPKYc="; +} diff --git a/manifests/forc-node-0.9.2.nix b/manifests/forc-node-0.9.2.nix new file mode 100644 index 00000000..6d92610d --- /dev/null +++ b/manifests/forc-node-0.9.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-node"; + version = "0.9.2"; + date = "2022-03-30"; + url = "https://github.com/fuellabs/sway"; + rev = "4905aa0b2b6cb7178d6229e7bed94c241a418c26"; + sha256 = "sha256-C+1vF48WryCdT2X09E8RwcY8LRHxGX3ncRkc2MtNnY4="; +} diff --git a/manifests/forc-publish-0.0.1.nix b/manifests/forc-publish-0.0.1.nix new file mode 100644 index 00000000..bcca5061 --- /dev/null +++ b/manifests/forc-publish-0.0.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.0.1"; + date = "2021-09-27"; + url = "https://github.com/fuellabs/sway"; + rev = "c9781a1acca6eea8a1f2f30607466ae40d76de65"; + sha256 = "sha256-g6pSdahytTJQJ1rgLCku4289C2dnCLqzvSH8Mq8y26I="; +} diff --git a/manifests/forc-publish-0.0.2.nix b/manifests/forc-publish-0.0.2.nix new file mode 100644 index 00000000..a97470c7 --- /dev/null +++ b/manifests/forc-publish-0.0.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.0.2"; + date = "2021-10-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e0c043bc9463eb266aaf111ff86b8c911602e053"; + sha256 = "sha256-LwGYEtKpb5eEts1K0TkRPwlWPu7EQLJbtaK8dAFexTk="; +} diff --git a/manifests/forc-publish-0.0.3.nix b/manifests/forc-publish-0.0.3.nix new file mode 100644 index 00000000..8c517e16 --- /dev/null +++ b/manifests/forc-publish-0.0.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.0.3"; + date = "2021-10-16"; + url = "https://github.com/fuellabs/sway"; + rev = "ce7692d119fa9010dd0937b5f10cf5728fe72393"; + sha256 = "sha256-ygyqjapnGH+tznuYu5x9vnvhfHaoQ82vlyi90s/ZTCU="; +} diff --git a/manifests/forc-publish-0.0.4.nix b/manifests/forc-publish-0.0.4.nix new file mode 100644 index 00000000..fc50f3fc --- /dev/null +++ b/manifests/forc-publish-0.0.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.0.4"; + date = "2021-11-05"; + url = "https://github.com/fuellabs/sway"; + rev = "d40239e7d49793c7d3d23e0d3de6595e40b89e11"; + sha256 = "sha256-Udtk0i4LfiXYMWLZtRiDbjXseqiTs83BJgqHaMvJGLA="; +} diff --git a/manifests/forc-publish-0.1.0.nix b/manifests/forc-publish-0.1.0.nix new file mode 100644 index 00000000..b71fcb82 --- /dev/null +++ b/manifests/forc-publish-0.1.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.0"; + date = "2021-12-24"; + url = "https://github.com/fuellabs/sway"; + rev = "90c9b56a7fc313321fcc7580314284080d00078f"; + sha256 = "sha256-5VgXmm63O89wp6mayRf6ihMiK/JrXECfkmpo17MPEk4="; +} diff --git a/manifests/forc-publish-0.1.1.nix b/manifests/forc-publish-0.1.1.nix new file mode 100644 index 00000000..afc515f7 --- /dev/null +++ b/manifests/forc-publish-0.1.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.1"; + date = "2021-12-24"; + url = "https://github.com/fuellabs/sway"; + rev = "8a37329cb1848efdeb46e2be1bfdb940b7750262"; + sha256 = "sha256-Ci4OJGp+iqmojxmf4Cg9m/2WG8jtKOPMDr2z6LDsOdU="; +} diff --git a/manifests/forc-publish-0.1.2.nix b/manifests/forc-publish-0.1.2.nix new file mode 100644 index 00000000..845d7cb0 --- /dev/null +++ b/manifests/forc-publish-0.1.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.2"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2431af753ed8fc0a76df53fc72172cb4bdb5d4b9"; + sha256 = "sha256-FYwNTSaaZdtDGbOQ5/Tk4+lvyZ3PCJBtnNLE6+PuEng="; +} diff --git a/manifests/forc-publish-0.1.3.nix b/manifests/forc-publish-0.1.3.nix new file mode 100644 index 00000000..1e47ae38 --- /dev/null +++ b/manifests/forc-publish-0.1.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.3"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "d30d3225a30c46a9675ca5db270597190cc228bc"; + sha256 = "sha256-3kvkiTVQ5qSLqBPb3kl2VakJfQlCOYaTY9aonRgN6AY="; +} diff --git a/manifests/forc-publish-0.1.4.nix b/manifests/forc-publish-0.1.4.nix new file mode 100644 index 00000000..a2bbd033 --- /dev/null +++ b/manifests/forc-publish-0.1.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.4"; + date = "2021-12-25"; + url = "https://github.com/fuellabs/sway"; + rev = "46305882aa552be287b28e55606ba74b81070460"; + sha256 = "sha256-/sFiQmmk/L+qqK9J/BrhPahg0no7YculAbB+TyB9s+Y="; +} diff --git a/manifests/forc-publish-0.1.5.nix b/manifests/forc-publish-0.1.5.nix new file mode 100644 index 00000000..cf3789ac --- /dev/null +++ b/manifests/forc-publish-0.1.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.5"; + date = "2021-12-27"; + url = "https://github.com/fuellabs/sway"; + rev = "1923f44784e6d450796b10addd447aeb3325d519"; + sha256 = "sha256-X/c/HRNrZu3s/wKU2l9pkuuXpqPFZvqeeziW/9iloK4="; +} diff --git a/manifests/forc-publish-0.1.6.nix b/manifests/forc-publish-0.1.6.nix new file mode 100644 index 00000000..2f99554c --- /dev/null +++ b/manifests/forc-publish-0.1.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.6"; + date = "2021-12-28"; + url = "https://github.com/fuellabs/sway"; + rev = "a38a89a042f7ef13ddf67cc7661b37eac96aad8f"; + sha256 = "sha256-6HM7WTQsYaOXSvu8Jr0lh6KDQFpFJI+XybvzU8jFEic="; +} diff --git a/manifests/forc-publish-0.1.7.nix b/manifests/forc-publish-0.1.7.nix new file mode 100644 index 00000000..62c57222 --- /dev/null +++ b/manifests/forc-publish-0.1.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.7"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "4038415bf9f681fca220bcf3951230b0e9129ba6"; + sha256 = "sha256-gcKYLveFcyiZtPxGjtk8W9dYCVdVUSsUMTW071WavX0="; +} diff --git a/manifests/forc-publish-0.1.8.nix b/manifests/forc-publish-0.1.8.nix new file mode 100644 index 00000000..bd4a58b3 --- /dev/null +++ b/manifests/forc-publish-0.1.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.8"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "6fd0bc0b6ecf22f3b334a0c8da86e776a7e2b87d"; + sha256 = "sha256-2M3FGiWEq++cQIkxECjSHabbVuMTkuvCx0eFIuOSeU0="; +} diff --git a/manifests/forc-publish-0.1.9.nix b/manifests/forc-publish-0.1.9.nix new file mode 100644 index 00000000..876d51d0 --- /dev/null +++ b/manifests/forc-publish-0.1.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.1.9"; + date = "2021-12-29"; + url = "https://github.com/fuellabs/sway"; + rev = "6fe6354eb96fa9b85c10e89f628bdf7ee525059d"; + sha256 = "sha256-Bwn4w93PqCxMquIz52cWQ3u0xtZCXf5TzkKzQvnV15M="; +} diff --git a/manifests/forc-publish-0.10.0.nix b/manifests/forc-publish-0.10.0.nix new file mode 100644 index 00000000..24a58ef0 --- /dev/null +++ b/manifests/forc-publish-0.10.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.10.0"; + date = "2022-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "a88ea439c95d9fb2701d6479ce496dc6571e92c2"; + sha256 = "sha256-YdU+xBfyQ6M4UVl/bgp5ba0byVUY7BMwryIZnradFNs="; +} diff --git a/manifests/forc-publish-0.10.1.nix b/manifests/forc-publish-0.10.1.nix new file mode 100644 index 00000000..2d6312e2 --- /dev/null +++ b/manifests/forc-publish-0.10.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.10.1"; + date = "2022-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "5c85d2b712975669d238233297443557969dec43"; + sha256 = "sha256-8ocDTtJL468H3PpkQu5b9+lZtfjFP3MDK8YE2LtPYy4="; +} diff --git a/manifests/forc-publish-0.10.2.nix b/manifests/forc-publish-0.10.2.nix new file mode 100644 index 00000000..0a0489d4 --- /dev/null +++ b/manifests/forc-publish-0.10.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.10.2"; + date = "2022-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "443abbffd520f0f964e837fbc784641741fd7950"; + sha256 = "sha256-qnU5g9Oxusr67zIIei9cAUqT7VVkA2VDXbarM1abOgc="; +} diff --git a/manifests/forc-publish-0.10.3.nix b/manifests/forc-publish-0.10.3.nix new file mode 100644 index 00000000..2c408e24 --- /dev/null +++ b/manifests/forc-publish-0.10.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.10.3"; + date = "2022-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "e7676db6f4ebc7a3885f87514d16a703a99410d7"; + sha256 = "sha256-/pWNhRZm+ev48LgpQhjGWuXG2TLvZSTpPHsZPLHcMiw="; +} diff --git a/manifests/forc-publish-0.11.0.nix b/manifests/forc-publish-0.11.0.nix new file mode 100644 index 00000000..b2e01a47 --- /dev/null +++ b/manifests/forc-publish-0.11.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.11.0"; + date = "2022-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "95816e4e41aae1d3425ba6ff5e7266076d8400fa"; + sha256 = "sha256-2XvtFdkQwUVlUVSjQeTUHlEROQ8r1GOcG8uCPM3uDTc="; +} diff --git a/manifests/forc-publish-0.12.1.nix b/manifests/forc-publish-0.12.1.nix new file mode 100644 index 00000000..0ba112fe --- /dev/null +++ b/manifests/forc-publish-0.12.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.12.1"; + date = "2022-05-04"; + url = "https://github.com/fuellabs/sway"; + rev = "a03a5d1c068a91779e5ce08eead6c4626de2eb0d"; + sha256 = "sha256-nE10IRpnOkNHXfLfYhFhucjJ3JgdPW6AuNneLL14ymI="; +} diff --git a/manifests/forc-publish-0.12.2.nix b/manifests/forc-publish-0.12.2.nix new file mode 100644 index 00000000..1879a87e --- /dev/null +++ b/manifests/forc-publish-0.12.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.12.2"; + date = "2022-05-12"; + url = "https://github.com/fuellabs/sway"; + rev = "2b6e9384f06692ec627293ae5db5e2f748fe2c30"; + sha256 = "sha256-HTo5eP8jZP5tzesGGA1i5YUmofsWxFJGKw0oMfvWv0c="; +} diff --git a/manifests/forc-publish-0.13.0.nix b/manifests/forc-publish-0.13.0.nix new file mode 100644 index 00000000..d60120dc --- /dev/null +++ b/manifests/forc-publish-0.13.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.13.0"; + date = "2022-05-19"; + url = "https://github.com/fuellabs/sway"; + rev = "6eef7ab750cd3282f08b6014960cbc02afae717a"; + sha256 = "sha256-iT90TBcMgmKTl/2MHR37Vtk7LcOshVMSshlU3BLhAG0="; +} diff --git a/manifests/forc-publish-0.13.1.nix b/manifests/forc-publish-0.13.1.nix new file mode 100644 index 00000000..60a261ab --- /dev/null +++ b/manifests/forc-publish-0.13.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.13.1"; + date = "2022-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "d73d9d2b4b547e2035ddfe085d439de56ccee1f0"; + sha256 = "sha256-jbuvLymTQb8g4ERJeu0K24z2OIw8aDlkBPF+YjiUkIE="; +} diff --git a/manifests/forc-publish-0.13.2.nix b/manifests/forc-publish-0.13.2.nix new file mode 100644 index 00000000..ae0d4a6d --- /dev/null +++ b/manifests/forc-publish-0.13.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.13.2"; + date = "2022-05-25"; + url = "https://github.com/fuellabs/sway"; + rev = "dac1b96419a6ed46a4c531492ae5e794a270d4a1"; + sha256 = "sha256-LBuJ2ukkK1FosaLcZ10ds8/7ybN1UU/o0d9dRmbG5a4="; +} diff --git a/manifests/forc-publish-0.14.0.nix b/manifests/forc-publish-0.14.0.nix new file mode 100644 index 00000000..cf3a66e7 --- /dev/null +++ b/manifests/forc-publish-0.14.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.14.0"; + date = "2022-05-26"; + url = "https://github.com/fuellabs/sway"; + rev = "953dad9cad0defe50ffe04e4031207fd247b63f1"; + sha256 = "sha256-/z+nNctB9t1qLKiemsg+QuV2jBnuYgd0tCe3cEkI1OU="; +} diff --git a/manifests/forc-publish-0.14.1.nix b/manifests/forc-publish-0.14.1.nix new file mode 100644 index 00000000..4e9a15f4 --- /dev/null +++ b/manifests/forc-publish-0.14.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.14.1"; + date = "2022-05-26"; + url = "https://github.com/fuellabs/sway"; + rev = "02ef7d10b6bf883d73fc1fd23034dc814dfffea2"; + sha256 = "sha256-8Uh2gbZb1R1llk3h+DeCF3heBO2Ec3nJNqI6hpSTfq8="; +} diff --git a/manifests/forc-publish-0.14.2.nix b/manifests/forc-publish-0.14.2.nix new file mode 100644 index 00000000..34b612f9 --- /dev/null +++ b/manifests/forc-publish-0.14.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.14.2"; + date = "2022-05-27"; + url = "https://github.com/fuellabs/sway"; + rev = "6fc5c69f29a5aab0b6ca677d9384d0d5eaffb232"; + sha256 = "sha256-JGicorHY6HfSWoZa2nFOnx45qDrnXmORzHOOKHk/6sM="; +} diff --git a/manifests/forc-publish-0.14.3.nix b/manifests/forc-publish-0.14.3.nix new file mode 100644 index 00000000..00c0c0e4 --- /dev/null +++ b/manifests/forc-publish-0.14.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.14.3"; + date = "2022-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "17f856bfa0d500e06fff2c470e8e6113533faf97"; + sha256 = "sha256-VfyRHFmz89GT7UP/JCR8lPZY5vxhfxnyyWheQdWSRn0="; +} diff --git a/manifests/forc-publish-0.14.4.nix b/manifests/forc-publish-0.14.4.nix new file mode 100644 index 00000000..d0831e33 --- /dev/null +++ b/manifests/forc-publish-0.14.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.14.4"; + date = "2022-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "b067a7dd64b26bd763eca268fef3849c2c77028d"; + sha256 = "sha256-VJGi0FlI+majMW66lo4Sxyo9NaaO+LgFyg7hHwckD1k="; +} diff --git a/manifests/forc-publish-0.14.5.nix b/manifests/forc-publish-0.14.5.nix new file mode 100644 index 00000000..d9cba9ba --- /dev/null +++ b/manifests/forc-publish-0.14.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.14.5"; + date = "2022-06-01"; + url = "https://github.com/fuellabs/sway"; + rev = "60c626cf486d5c53c44d84db1ec81cb90174cad3"; + sha256 = "sha256-3zI62Q+jaZYml3PjHn5Xsx635ARfUPsXBpOGDc0QzVM="; +} diff --git a/manifests/forc-publish-0.15.0.nix b/manifests/forc-publish-0.15.0.nix new file mode 100644 index 00000000..e6cd56bc --- /dev/null +++ b/manifests/forc-publish-0.15.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.15.0"; + date = "2022-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "ee7822c411a3d6135ea590bbc5c85527c4ede6d7"; + sha256 = "sha256-7qdjLcxcKCHt+RNrVU9WRK+DUepB0G/5RkScHHWRFJQ="; +} diff --git a/manifests/forc-publish-0.15.1.nix b/manifests/forc-publish-0.15.1.nix new file mode 100644 index 00000000..87832a14 --- /dev/null +++ b/manifests/forc-publish-0.15.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.15.1"; + date = "2022-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "a34b4b99fcdd065d559f6cbb9dec0697c3f5edd1"; + sha256 = "sha256-kR1NJqI6fOyDne1zvwIG2M92+dSOn+6Hby+Q4iMJAAQ="; +} diff --git a/manifests/forc-publish-0.15.2.nix b/manifests/forc-publish-0.15.2.nix new file mode 100644 index 00000000..c3f89fbd --- /dev/null +++ b/manifests/forc-publish-0.15.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.15.2"; + date = "2022-06-09"; + url = "https://github.com/fuellabs/sway"; + rev = "eab07e48bc6dbd0c80aedc1e363bb63a6d5f0e28"; + sha256 = "sha256-vE29EiJYF4T6FW/1odNJyZOc5HKHR5sC10bASSFcmuc="; +} diff --git a/manifests/forc-publish-0.16.0.nix b/manifests/forc-publish-0.16.0.nix new file mode 100644 index 00000000..968a591a --- /dev/null +++ b/manifests/forc-publish-0.16.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.16.0"; + date = "2022-06-16"; + url = "https://github.com/fuellabs/sway"; + rev = "948f7aba42b4138433fb5b61c698c8f4a60db424"; + sha256 = "sha256-5yPftMl1LJkub2yeGHF1BrLZZSYzg82IYFVpVWG0v48="; +} diff --git a/manifests/forc-publish-0.16.1.nix b/manifests/forc-publish-0.16.1.nix new file mode 100644 index 00000000..197b9b34 --- /dev/null +++ b/manifests/forc-publish-0.16.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.16.1"; + date = "2022-06-17"; + url = "https://github.com/fuellabs/sway"; + rev = "dcf22453aeb054335d96ef810da9d4f756d869b7"; + sha256 = "sha256-kAZVbgkf7ganCs+sBPL0eMmR3MDCm6s+qL8d1CfHL8U="; +} diff --git a/manifests/forc-publish-0.16.2.nix b/manifests/forc-publish-0.16.2.nix new file mode 100644 index 00000000..c8985bc7 --- /dev/null +++ b/manifests/forc-publish-0.16.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.16.2"; + date = "2022-06-24"; + url = "https://github.com/fuellabs/sway"; + rev = "7920330d34c97cf418b6d0e1561f978068158228"; + sha256 = "sha256-NpCpZYxgJeUcgw5QqnAhzVmEkMrR7cs2Sj6aW6Rm6JU="; +} diff --git a/manifests/forc-publish-0.17.0.nix b/manifests/forc-publish-0.17.0.nix new file mode 100644 index 00000000..3ea20eca --- /dev/null +++ b/manifests/forc-publish-0.17.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.17.0"; + date = "2022-07-01"; + url = "https://github.com/fuellabs/sway"; + rev = "b81bcd9652d4fc9908d1971c9215a7cfdde39adc"; + sha256 = "sha256-cOyJXvwyZbZeTLfw9xoAtY1rsHN29VXLkRsEeCZyDmI="; +} diff --git a/manifests/forc-publish-0.18.0.nix b/manifests/forc-publish-0.18.0.nix new file mode 100644 index 00000000..ff09390e --- /dev/null +++ b/manifests/forc-publish-0.18.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.18.0"; + date = "2022-07-08"; + url = "https://github.com/fuellabs/sway"; + rev = "ada0d294a68e5ca3070e3c46eb89619e7d87caf2"; + sha256 = "sha256-9a39KoLnQ7urf7pBwxFy8B2+SELuhhx6JDZjyZo2rSQ="; +} diff --git a/manifests/forc-publish-0.18.1.nix b/manifests/forc-publish-0.18.1.nix new file mode 100644 index 00000000..8758e420 --- /dev/null +++ b/manifests/forc-publish-0.18.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.18.1"; + date = "2022-07-11"; + url = "https://github.com/fuellabs/sway"; + rev = "3bd8eaf4a0f11a3009c9421100cc06c2e897b6c2"; + sha256 = "sha256-WI7srBdT5WAMZ6OfUWAcihZcpxbn/ogfVE3LaoQptcM="; +} diff --git a/manifests/forc-publish-0.19.0.nix b/manifests/forc-publish-0.19.0.nix new file mode 100644 index 00000000..3baa97e8 --- /dev/null +++ b/manifests/forc-publish-0.19.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.19.0"; + date = "2022-07-27"; + url = "https://github.com/fuellabs/sway"; + rev = "5c716e1ba55d755555ed5aa186c883f73c4f90dc"; + sha256 = "sha256-DKB7ykAHVte8Dt566iNdY6CIkvs06zRxCWT50LoQRBk="; +} diff --git a/manifests/forc-publish-0.19.1.nix b/manifests/forc-publish-0.19.1.nix new file mode 100644 index 00000000..2e2019b1 --- /dev/null +++ b/manifests/forc-publish-0.19.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.19.1"; + date = "2022-08-01"; + url = "https://github.com/fuellabs/sway"; + rev = "1202e790c119ff9f04c847ecaab3411cfaf32f94"; + sha256 = "sha256-jFtMg6C861fIWZBmX5SbSsvQwPUr+KWQOcQnPDweWUo="; +} diff --git a/manifests/forc-publish-0.19.2.nix b/manifests/forc-publish-0.19.2.nix new file mode 100644 index 00000000..ecdeceb1 --- /dev/null +++ b/manifests/forc-publish-0.19.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.19.2"; + date = "2022-08-08"; + url = "https://github.com/fuellabs/sway"; + rev = "6808861389966f99887f71476918a562a9edd90e"; + sha256 = "sha256-LL5jMwMvw//bN8SkI5K/tNF+7NKuuOXpcMGezEmrQ4g="; +} diff --git a/manifests/forc-publish-0.2.0.nix b/manifests/forc-publish-0.2.0.nix new file mode 100644 index 00000000..39ae540e --- /dev/null +++ b/manifests/forc-publish-0.2.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.2.0"; + date = "2022-01-06"; + url = "https://github.com/fuellabs/sway"; + rev = "38479274e0c50518e20c919682b8173ae4a555d3"; + sha256 = "sha256-48BfRiY2evrKlcz1bXBWoWQgRtkk4jc2r3GZRj28sPo="; +} diff --git a/manifests/forc-publish-0.2.1.nix b/manifests/forc-publish-0.2.1.nix new file mode 100644 index 00000000..fe87f28b --- /dev/null +++ b/manifests/forc-publish-0.2.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.2.1"; + date = "2022-01-07"; + url = "https://github.com/fuellabs/sway"; + rev = "a790fd729b2021f837be924c7b8b21099b9f6c12"; + sha256 = "sha256-TUQQa1uE9JuZzEnXxrOAeBplNkzt9MRWzPjxZdECZg8="; +} diff --git a/manifests/forc-publish-0.20.0.nix b/manifests/forc-publish-0.20.0.nix new file mode 100644 index 00000000..ffd608c7 --- /dev/null +++ b/manifests/forc-publish-0.20.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.20.0"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "fc3a05d87d1178e937fc5e4742b13fcca490057d"; + sha256 = "sha256-gJaLWboU9LNEn9Xu+0AIveFvG3wCTMH1P95H+DVJCRw="; +} diff --git a/manifests/forc-publish-0.20.1.nix b/manifests/forc-publish-0.20.1.nix new file mode 100644 index 00000000..b29a3e73 --- /dev/null +++ b/manifests/forc-publish-0.20.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.20.1"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "21887f4b321bfacb16c7a6602071e3b6ea1c8df1"; + sha256 = "sha256-mO7vojv7gEfBJaEmBW2uQTo1ecLNoTL6E1o1d68saBQ="; +} diff --git a/manifests/forc-publish-0.20.2.nix b/manifests/forc-publish-0.20.2.nix new file mode 100644 index 00000000..6bcfe89e --- /dev/null +++ b/manifests/forc-publish-0.20.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.20.2"; + date = "2022-08-18"; + url = "https://github.com/fuellabs/sway"; + rev = "6a8116fcee71aa960217b1672bac0c35d1fce42c"; + sha256 = "sha256-JfjHda4vRGPiZ2EhJbGMzpSJ24bFFS3WlPxtXmI3mno="; +} diff --git a/manifests/forc-publish-0.21.0.nix b/manifests/forc-publish-0.21.0.nix new file mode 100644 index 00000000..ec4fbd9f --- /dev/null +++ b/manifests/forc-publish-0.21.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.21.0"; + date = "2022-08-29"; + url = "https://github.com/fuellabs/sway"; + rev = "32b5b142b54d3d38ae1f7df69f465138e86de82d"; + sha256 = "sha256-joWJifoFBzzK9FdhQwyYwVuDU4/8hQzmrUgD7+2BSJY="; +} diff --git a/manifests/forc-publish-0.22.0.nix b/manifests/forc-publish-0.22.0.nix new file mode 100644 index 00000000..46ffaab4 --- /dev/null +++ b/manifests/forc-publish-0.22.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.22.0"; + date = "2022-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "6e1fbca21f0979d226efd7ceea5b6d71696536cd"; + sha256 = "sha256-cK7YReHEq3Z/wVV6bxTohdHI9c2zSz53Sej8GCWSIrI="; +} diff --git a/manifests/forc-publish-0.22.1.nix b/manifests/forc-publish-0.22.1.nix new file mode 100644 index 00000000..2b4441d0 --- /dev/null +++ b/manifests/forc-publish-0.22.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.22.1"; + date = "2022-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "c486eabc3ed4d8c53b63735188f2c1db5d17703c"; + sha256 = "sha256-fChGs4bPxg82noIJooec6Tk908T8BrDUWH6YQNvAuhg="; +} diff --git a/manifests/forc-publish-0.23.0.nix b/manifests/forc-publish-0.23.0.nix new file mode 100644 index 00000000..c6afb7f4 --- /dev/null +++ b/manifests/forc-publish-0.23.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.23.0"; + date = "2022-09-03"; + url = "https://github.com/fuellabs/sway"; + rev = "4712e5b26c6c0f778d7771ef1b35a229fe3a371d"; + sha256 = "sha256-ZdH69u5DOe/fjARXWpJe0J21K/rVL4YJD5/qHQdlr50="; +} diff --git a/manifests/forc-publish-0.24.0.nix b/manifests/forc-publish-0.24.0.nix new file mode 100644 index 00000000..14764a52 --- /dev/null +++ b/manifests/forc-publish-0.24.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.24.0"; + date = "2022-09-06"; + url = "https://github.com/fuellabs/sway"; + rev = "ea4f1b7885248c2b4c4d0da394c2cc50ea1583e8"; + sha256 = "sha256-2DwlfRw+aw9g4E2wPeomlGH/qe6O0kKha3Vu3+HY4AI="; +} diff --git a/manifests/forc-publish-0.24.1.nix b/manifests/forc-publish-0.24.1.nix new file mode 100644 index 00000000..45771953 --- /dev/null +++ b/manifests/forc-publish-0.24.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.24.1"; + date = "2022-09-07"; + url = "https://github.com/fuellabs/sway"; + rev = "54e1a340e6c0c9a675e8a66aab03f579d5d6b39b"; + sha256 = "sha256-t/VFaYCANGY5CM2FFrLhNiBB5eAL/CFCZvIzigr3d1I="; +} diff --git a/manifests/forc-publish-0.24.2.nix b/manifests/forc-publish-0.24.2.nix new file mode 100644 index 00000000..61f963b5 --- /dev/null +++ b/manifests/forc-publish-0.24.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.24.2"; + date = "2022-09-09"; + url = "https://github.com/fuellabs/sway"; + rev = "057e83aee87d17c3812f223f5fc7884cf6d3468a"; + sha256 = "sha256-XQePJ7tvPqjAAnqdpavkUxuCtH8MmaiXSDrhIUpjVQo="; +} diff --git a/manifests/forc-publish-0.24.3.nix b/manifests/forc-publish-0.24.3.nix new file mode 100644 index 00000000..83174983 --- /dev/null +++ b/manifests/forc-publish-0.24.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.24.3"; + date = "2022-09-12"; + url = "https://github.com/fuellabs/sway"; + rev = "95cd150cacef407a1f30c89899c539b0d57f099d"; + sha256 = "sha256-oWQpD2HohdjQ0lcnOjipT0oTIX68KnoWy13FeXYKi7E="; +} diff --git a/manifests/forc-publish-0.24.4.nix b/manifests/forc-publish-0.24.4.nix new file mode 100644 index 00000000..d7ca38bf --- /dev/null +++ b/manifests/forc-publish-0.24.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.24.4"; + date = "2022-09-16"; + url = "https://github.com/fuellabs/sway"; + rev = "f7800e18979dd8e4c8d672b8e7aae1758c2edb88"; + sha256 = "sha256-jRqUQv7nsv0xq+CNrEYCnt0yfiVycTUF3eYOMt/DCdQ="; +} diff --git a/manifests/forc-publish-0.24.5.nix b/manifests/forc-publish-0.24.5.nix new file mode 100644 index 00000000..8a2a6c91 --- /dev/null +++ b/manifests/forc-publish-0.24.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.24.5"; + date = "2022-09-24"; + url = "https://github.com/fuellabs/sway"; + rev = "e695606d8884a18664f6231681333a784e623bc9"; + sha256 = "sha256-gsLMsR+sFj3tvE86JvKzj95aMp1o9ERBkTskr+ejUhM="; +} diff --git a/manifests/forc-publish-0.25.0.nix b/manifests/forc-publish-0.25.0.nix new file mode 100644 index 00000000..e277a903 --- /dev/null +++ b/manifests/forc-publish-0.25.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.25.0"; + date = "2022-10-05"; + url = "https://github.com/fuellabs/sway"; + rev = "0f84734f6f95a8598d701b087e486caacf23f514"; + sha256 = "sha256-tXUEiGKpq7H5nSUICGlUeUJtDnKjwDpBvzl5d3jd8OE="; +} diff --git a/manifests/forc-publish-0.25.1.nix b/manifests/forc-publish-0.25.1.nix new file mode 100644 index 00000000..3412581d --- /dev/null +++ b/manifests/forc-publish-0.25.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.25.1"; + date = "2022-10-06"; + url = "https://github.com/fuellabs/sway"; + rev = "cc9740bea1438cdde7f15fa0d0c2eba705b6aef1"; + sha256 = "sha256-YeTt1+D8e3VnqBmn5VWa/NUlDEOzf8zxeuYh5QXBEVM="; +} diff --git a/manifests/forc-publish-0.25.2.nix b/manifests/forc-publish-0.25.2.nix new file mode 100644 index 00000000..858806b1 --- /dev/null +++ b/manifests/forc-publish-0.25.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.25.2"; + date = "2022-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "dfa6224932a97c514b707dcfc300715b2a0895dc"; + sha256 = "sha256-rZrjzlGIdv1ul2xb94YkkUqXWEbACFQKXirpa/uuITs="; +} diff --git a/manifests/forc-publish-0.26.0.nix b/manifests/forc-publish-0.26.0.nix new file mode 100644 index 00000000..4f4ff131 --- /dev/null +++ b/manifests/forc-publish-0.26.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.26.0"; + date = "2022-10-13"; + url = "https://github.com/fuellabs/sway"; + rev = "e7674f704f2706e22f77c0ed32df9c89302e5e7e"; + sha256 = "sha256-S7jlje5wd2RiO4+IDjoWUiN19h21DK1sUWlziwxb+3I="; +} diff --git a/manifests/forc-publish-0.27.0.nix b/manifests/forc-publish-0.27.0.nix new file mode 100644 index 00000000..538bb368 --- /dev/null +++ b/manifests/forc-publish-0.27.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.27.0"; + date = "2022-10-23"; + url = "https://github.com/fuellabs/sway"; + rev = "40f1e79de08af109f2ebb066f51704f36094ed1e"; + sha256 = "sha256-qIso6YBCs4HKu1fAqM0fgq0vcaOqgGeZ2CY0ZLjTm+o="; +} diff --git a/manifests/forc-publish-0.28.0.nix b/manifests/forc-publish-0.28.0.nix new file mode 100644 index 00000000..1b0f52fb --- /dev/null +++ b/manifests/forc-publish-0.28.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.28.0"; + date = "2022-10-25"; + url = "https://github.com/fuellabs/sway"; + rev = "a7978381effcf999adc5726587bf8f711f04e414"; + sha256 = "sha256-3xqbdGXjWIfdZV7po64bp+N79MGfEkL0fRyKcel0A2s="; +} diff --git a/manifests/forc-publish-0.28.1.nix b/manifests/forc-publish-0.28.1.nix new file mode 100644 index 00000000..14c95592 --- /dev/null +++ b/manifests/forc-publish-0.28.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.28.1"; + date = "2022-10-25"; + url = "https://github.com/fuellabs/sway"; + rev = "84f9aad376760cd9c8eacc8a4848bffeb25bf9a5"; + sha256 = "sha256-S5sB6ahI7P2Qv4Rh3GTE7lkYcEAbp1znpW/hlkyuh9U="; +} diff --git a/manifests/forc-publish-0.29.0.nix b/manifests/forc-publish-0.29.0.nix new file mode 100644 index 00000000..4d2c55ae --- /dev/null +++ b/manifests/forc-publish-0.29.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.29.0"; + date = "2022-10-31"; + url = "https://github.com/fuellabs/sway"; + rev = "dc8e5f6b84741a3a690ba25b473f8b1e01e31103"; + sha256 = "sha256-HVGhxE8PgPcCok8BE7ESmlbC3RHAOT6QtdhB0W60D6g="; +} diff --git a/manifests/forc-publish-0.3.0.nix b/manifests/forc-publish-0.3.0.nix new file mode 100644 index 00000000..e412c5fa --- /dev/null +++ b/manifests/forc-publish-0.3.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.3.0"; + date = "2022-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "b81eee7d23af71958ba1a3276855949277902a57"; + sha256 = "sha256-25ZOELcJchuJapvGZFigzsl3BPEUW/R3f5NhvoXBKeE="; +} diff --git a/manifests/forc-publish-0.3.1.nix b/manifests/forc-publish-0.3.1.nix new file mode 100644 index 00000000..30a492f1 --- /dev/null +++ b/manifests/forc-publish-0.3.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.3.1"; + date = "2022-01-23"; + url = "https://github.com/fuellabs/sway"; + rev = "d9b5a1103a1f37672d6f09c8dae34b813872d44b"; + sha256 = "sha256-eYVjjBkg6Gxc7mKMl7oaK3Ws2XVDHWAt+z3WIjGM3Xs="; +} diff --git a/manifests/forc-publish-0.3.2.nix b/manifests/forc-publish-0.3.2.nix new file mode 100644 index 00000000..2801f1d7 --- /dev/null +++ b/manifests/forc-publish-0.3.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.3.2"; + date = "2022-01-27"; + url = "https://github.com/fuellabs/sway"; + rev = "3012191420362e9ba1df0324b2a9e80eeded7e1d"; + sha256 = "sha256-5AirUGidtaNFfVf4uSutfrEvs2wd/ROiDyudYHb2EWQ="; +} diff --git a/manifests/forc-publish-0.3.3.nix b/manifests/forc-publish-0.3.3.nix new file mode 100644 index 00000000..b5c91b18 --- /dev/null +++ b/manifests/forc-publish-0.3.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.3.3"; + date = "2022-01-27"; + url = "https://github.com/fuellabs/sway"; + rev = "441ab123839f2eb4f5dd1b055fdbe5a5b26a6736"; + sha256 = "sha256-QI8nqWfKr+/yGP96NnNdpKGwHHzA6UxEyQvjwQLgcSU="; +} diff --git a/manifests/forc-publish-0.30.0.nix b/manifests/forc-publish-0.30.0.nix new file mode 100644 index 00000000..43e898e8 --- /dev/null +++ b/manifests/forc-publish-0.30.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.30.0"; + date = "2022-11-02"; + url = "https://github.com/fuellabs/sway"; + rev = "37deaee8fccf5804d78a003cf64f14fac654fc41"; + sha256 = "sha256-BIVBDX3i2ym6d/90AuK/I/ATtJqUFZS9OdltCdBtqI0="; +} diff --git a/manifests/forc-publish-0.30.1.nix b/manifests/forc-publish-0.30.1.nix new file mode 100644 index 00000000..85cb756d --- /dev/null +++ b/manifests/forc-publish-0.30.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.30.1"; + date = "2022-11-04"; + url = "https://github.com/fuellabs/sway"; + rev = "158f22115bf000d45862be95ff7fdb0ff5bdee4d"; + sha256 = "sha256-m0y1Zy0iyWCuyqfMhYGQ2myb4zhcZHqLRZIk4ZWZ338="; +} diff --git a/manifests/forc-publish-0.31.0.nix b/manifests/forc-publish-0.31.0.nix new file mode 100644 index 00000000..ef572b7d --- /dev/null +++ b/manifests/forc-publish-0.31.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.31.0"; + date = "2022-11-09"; + url = "https://github.com/fuellabs/sway"; + rev = "7a389ddb35bae051938e5441c8ef4a8b63dd269c"; + sha256 = "sha256-fRGQtZxDPD0sPfpt6xKYOaR9Ty1NDqR8El6rRIuU83M="; +} diff --git a/manifests/forc-publish-0.31.1.nix b/manifests/forc-publish-0.31.1.nix new file mode 100644 index 00000000..f3e281e1 --- /dev/null +++ b/manifests/forc-publish-0.31.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.31.1"; + date = "2022-11-11"; + url = "https://github.com/fuellabs/sway"; + rev = "c32b0759d25c0b515cbf535f9fb9b8e6fda38ff2"; + sha256 = "sha256-5GlH4fTix4r+b66tsE1vx/iyJCsNPnWjfuY7Iu36234="; +} diff --git a/manifests/forc-publish-0.31.2.nix b/manifests/forc-publish-0.31.2.nix new file mode 100644 index 00000000..3a802e29 --- /dev/null +++ b/manifests/forc-publish-0.31.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.31.2"; + date = "2022-11-29"; + url = "https://github.com/fuellabs/sway"; + rev = "12239f7d57441a75b0979f2f34d5151a777a5c0a"; + sha256 = "sha256-9qHs1OatcgPBSLToDkCvTfTXxeAOTjrM1jABQZxqUaI="; +} diff --git a/manifests/forc-publish-0.31.3.nix b/manifests/forc-publish-0.31.3.nix new file mode 100644 index 00000000..09c43629 --- /dev/null +++ b/manifests/forc-publish-0.31.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.31.3"; + date = "2022-11-30"; + url = "https://github.com/fuellabs/sway"; + rev = "12ad8423811d566972dd75fbb954cdb95afde8d8"; + sha256 = "sha256-vsRRV7NAxSQw+NlZr7dUe2g0Hd8LSjkyXxDiygVfb54="; +} diff --git a/manifests/forc-publish-0.32.0.nix b/manifests/forc-publish-0.32.0.nix new file mode 100644 index 00000000..d36f42ea --- /dev/null +++ b/manifests/forc-publish-0.32.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.32.0"; + date = "2022-12-14"; + url = "https://github.com/fuellabs/sway"; + rev = "ed1610a2f6bce5fba39ec53fe7da1ba2f05da4ce"; + sha256 = "sha256-ZteML6BecCLkj7w5fVJcRVxRYpZocpgNXuNRjDszEYc="; +} diff --git a/manifests/forc-publish-0.32.1.nix b/manifests/forc-publish-0.32.1.nix new file mode 100644 index 00000000..308cfb26 --- /dev/null +++ b/manifests/forc-publish-0.32.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.32.1"; + date = "2022-12-14"; + url = "https://github.com/fuellabs/sway"; + rev = "50c1b6c858c044acf88760cb7eb1b39d076f322d"; + sha256 = "sha256-GnF8eHwhcCC0Yr73jNVjyZUh1lOU9YmFslFzeZnSqHo="; +} diff --git a/manifests/forc-publish-0.32.2.nix b/manifests/forc-publish-0.32.2.nix new file mode 100644 index 00000000..650d81a1 --- /dev/null +++ b/manifests/forc-publish-0.32.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.32.2"; + date = "2022-12-15"; + url = "https://github.com/fuellabs/sway"; + rev = "b9996f13463c324e256014935c053c334b880ab5"; + sha256 = "sha256-ZCAsObQ50XJnsc64XFB/6ia8fjX3vi4rHug6FuC2ySc="; +} diff --git a/manifests/forc-publish-0.33.0.nix b/manifests/forc-publish-0.33.0.nix new file mode 100644 index 00000000..d33bd5b9 --- /dev/null +++ b/manifests/forc-publish-0.33.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.33.0"; + date = "2023-01-05"; + url = "https://github.com/fuellabs/sway"; + rev = "2b2b4b117c4f6a5e762e368af0dfc6896fa31e7d"; + sha256 = "sha256-K/RT9WFv1uGpBbwckvhcvXPdEnNjluSd2f7CNdjeGhQ="; +} diff --git a/manifests/forc-publish-0.33.1.nix b/manifests/forc-publish-0.33.1.nix new file mode 100644 index 00000000..3f8aa723 --- /dev/null +++ b/manifests/forc-publish-0.33.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.33.1"; + date = "2023-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "acd4c1e0fbdc406800a06c845430a80dd3560fcc"; + sha256 = "sha256-00KVxZUcyCrE4RT2WrmHtxFFFyxLuiD6nJV9PoDzHng="; +} diff --git a/manifests/forc-publish-0.34.0.nix b/manifests/forc-publish-0.34.0.nix new file mode 100644 index 00000000..dbd9c9cb --- /dev/null +++ b/manifests/forc-publish-0.34.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.34.0"; + date = "2023-02-01"; + url = "https://github.com/fuellabs/sway"; + rev = "ddb0ede05e649489b554da4f7a8003b507443ad0"; + sha256 = "sha256-LI/cJybVpg/cpY6vD5YdmlAJkPc0q9hIeGlE4j+YfAc="; +} diff --git a/manifests/forc-publish-0.35.0.nix b/manifests/forc-publish-0.35.0.nix new file mode 100644 index 00000000..a788ea68 --- /dev/null +++ b/manifests/forc-publish-0.35.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.35.0"; + date = "2023-02-08"; + url = "https://github.com/fuellabs/sway"; + rev = "b6f19a3be7b2fb5ef88e358a926854dac10cb281"; + sha256 = "sha256-gXmI2j0z7OP3iXMT8F7HNH4Gvei6aFxluYRgbiyU7fo="; +} diff --git a/manifests/forc-publish-0.35.1.nix b/manifests/forc-publish-0.35.1.nix new file mode 100644 index 00000000..35b29803 --- /dev/null +++ b/manifests/forc-publish-0.35.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.35.1"; + date = "2023-02-15"; + url = "https://github.com/fuellabs/sway"; + rev = "1f9debfaf9b85d41f3b704c45633eb4daddcb594"; + sha256 = "sha256-dcPtllP66f7J5YVqY+T9gj9DvOZX1fvZb2EOCi3DsRM="; +} diff --git a/manifests/forc-publish-0.35.2.nix b/manifests/forc-publish-0.35.2.nix new file mode 100644 index 00000000..950a36d5 --- /dev/null +++ b/manifests/forc-publish-0.35.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.35.2"; + date = "2023-02-17"; + url = "https://github.com/fuellabs/sway"; + rev = "f05ecaf2de1ebe3b3da80ecd8eb6053a84145cf4"; + sha256 = "sha256-FArhyYdJxGWDkJ0gpVufzbMfsQ4ZHiPqQu/9W3mUWco="; +} diff --git a/manifests/forc-publish-0.35.3.nix b/manifests/forc-publish-0.35.3.nix new file mode 100644 index 00000000..4d9c635c --- /dev/null +++ b/manifests/forc-publish-0.35.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.35.3"; + date = "2023-02-21"; + url = "https://github.com/fuellabs/sway"; + rev = "5d2b10bd83791d2eaff04206dbd45bfdd9cf23ff"; + sha256 = "sha256-hHQRdaQR3Qs05VfLc0nJD3lFldGuYTT6XQbszplA3vA="; +} diff --git a/manifests/forc-publish-0.35.4.nix b/manifests/forc-publish-0.35.4.nix new file mode 100644 index 00000000..f781ad98 --- /dev/null +++ b/manifests/forc-publish-0.35.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.35.4"; + date = "2023-03-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3770dd8c21540e54dee818aa5cbc0a6170102695"; + sha256 = "sha256-8e10JdvWKDarXNFk5Oyc1I3+5s108M2ck/yLTIlVI5I="; +} diff --git a/manifests/forc-publish-0.35.5.nix b/manifests/forc-publish-0.35.5.nix new file mode 100644 index 00000000..474523cf --- /dev/null +++ b/manifests/forc-publish-0.35.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.35.5"; + date = "2023-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "49eae2dd93a1957e2a2c2fb3f51b11eb3791fc24"; + sha256 = "sha256-RibkxvZno7nLScV14AwnndbzJ29IWTSFQ/xB4PmO5ZE="; +} diff --git a/manifests/forc-publish-0.36.0.nix b/manifests/forc-publish-0.36.0.nix new file mode 100644 index 00000000..e56f30fa --- /dev/null +++ b/manifests/forc-publish-0.36.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.36.0"; + date = "2023-04-04"; + url = "https://github.com/fuellabs/sway"; + rev = "77f575ab7921fdb23d5373072272512264bd99f4"; + sha256 = "sha256-GeQ643/pJahTBmGTtIUl34QH4UCYvfeeQuFXKnlN2Ng="; +} diff --git a/manifests/forc-publish-0.36.1.nix b/manifests/forc-publish-0.36.1.nix new file mode 100644 index 00000000..75c913a8 --- /dev/null +++ b/manifests/forc-publish-0.36.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.36.1"; + date = "2023-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "92818a4d5ec89b5d4fb62196261cf578d58e52e3"; + sha256 = "sha256-F+qUImoSCv8H90IOpmtdIYSmNdLZivkN/Nm7W3oUdM4="; +} diff --git a/manifests/forc-publish-0.37.0.nix b/manifests/forc-publish-0.37.0.nix new file mode 100644 index 00000000..270875e4 --- /dev/null +++ b/manifests/forc-publish-0.37.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.37.0"; + date = "2023-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "607ac50176db8bef936f91bacf435d0ea37d041e"; + sha256 = "sha256-+FrktHUq2mX2u4fl4C9hLrV8fQ9DrSSbpf5umSMHQNw="; +} diff --git a/manifests/forc-publish-0.37.1.nix b/manifests/forc-publish-0.37.1.nix new file mode 100644 index 00000000..4db6261f --- /dev/null +++ b/manifests/forc-publish-0.37.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.37.1"; + date = "2023-04-13"; + url = "https://github.com/fuellabs/sway"; + rev = "83e5479462ed2883591669a42552606ac25f0a04"; + sha256 = "sha256-fR9E77G2Vc+StVZ/whmnan2/hWZFKPjoRJsJHV2MI5k="; +} diff --git a/manifests/forc-publish-0.37.2.nix b/manifests/forc-publish-0.37.2.nix new file mode 100644 index 00000000..f08285f4 --- /dev/null +++ b/manifests/forc-publish-0.37.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.37.2"; + date = "2023-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "dc6af913939698452359474c33ecebe0ad35ca48"; + sha256 = "sha256-DA3ryR//UYhbX8nSWiA+UL23TyejhfMzTbmFhDte/OY="; +} diff --git a/manifests/forc-publish-0.37.3.nix b/manifests/forc-publish-0.37.3.nix new file mode 100644 index 00000000..98c95236 --- /dev/null +++ b/manifests/forc-publish-0.37.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.37.3"; + date = "2023-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "d09ef912828f5fc7193501ccf8a0d0fb0f36a821"; + sha256 = "sha256-+s9bBrFC5Mun+FwaYS28Wn9nPyxaACAfiW0tuKRPQvg="; +} diff --git a/manifests/forc-publish-0.38.0.nix b/manifests/forc-publish-0.38.0.nix new file mode 100644 index 00000000..fed1b8bc --- /dev/null +++ b/manifests/forc-publish-0.38.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.38.0"; + date = "2023-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2d16d70ab9d5ab0de0255941048f811b6d07c6b1"; + sha256 = "sha256-xweooodyzG11dWyrrP3MZ6e0vSnkk20svbgbIXkBolw="; +} diff --git a/manifests/forc-publish-0.39.0.nix b/manifests/forc-publish-0.39.0.nix new file mode 100644 index 00000000..7a792a34 --- /dev/null +++ b/manifests/forc-publish-0.39.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.39.0"; + date = "2023-05-17"; + url = "https://github.com/fuellabs/sway"; + rev = "7a095280e7e1c0bfbbfc201867896e720aab7209"; + sha256 = "sha256-zUzS+IKW2eNbd3L0lArS4BqJ1bkecnxDN62tCIIvYb8="; +} diff --git a/manifests/forc-publish-0.39.1.nix b/manifests/forc-publish-0.39.1.nix new file mode 100644 index 00000000..58f862c3 --- /dev/null +++ b/manifests/forc-publish-0.39.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.39.1"; + date = "2023-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "e3065657c907225a8fdfe2d2210a7a3bd2b55c73"; + sha256 = "sha256-ytLjZOrHW8XkqzwVRoTPNrzozDF1jmYxxKGVxGqS2G4="; +} diff --git a/manifests/forc-publish-0.4.0.nix b/manifests/forc-publish-0.4.0.nix new file mode 100644 index 00000000..a2043d04 --- /dev/null +++ b/manifests/forc-publish-0.4.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.4.0"; + date = "2022-02-08"; + url = "https://github.com/fuellabs/sway"; + rev = "6332f9ad955e1f8e744cc87e07d028092874e0d5"; + sha256 = "sha256-lDyAgfNC5ezqptxuM7lycuVEofI5W62hzY011MzXUt8="; +} diff --git a/manifests/forc-publish-0.40.0.nix b/manifests/forc-publish-0.40.0.nix new file mode 100644 index 00000000..d7b40cca --- /dev/null +++ b/manifests/forc-publish-0.40.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.40.0"; + date = "2023-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "164c7c8bea3ce264581058d4165df71ee761e0b3"; + sha256 = "sha256-J3csh7R4IydBXmq3cY/hbHlVWiXcfhkDA9XLSH8PD58="; +} diff --git a/manifests/forc-publish-0.40.1.nix b/manifests/forc-publish-0.40.1.nix new file mode 100644 index 00000000..f11d8148 --- /dev/null +++ b/manifests/forc-publish-0.40.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.40.1"; + date = "2023-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "48104d0bde0d343154a5bc39a310092532883235"; + sha256 = "sha256-6qGMJ5W+/b9ZW+IBgvK0FXmDYWk5Yalund1mgb50yPg="; +} diff --git a/manifests/forc-publish-0.41.0.nix b/manifests/forc-publish-0.41.0.nix new file mode 100644 index 00000000..6e07266b --- /dev/null +++ b/manifests/forc-publish-0.41.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.41.0"; + date = "2023-06-30"; + url = "https://github.com/fuellabs/sway"; + rev = "0d45b890c9eaa75b88093a9a4cbecbf5ca8c0731"; + sha256 = "sha256-G9KOf1V44mXHMoqhWHUu68NOywE1pcOIhV1eB2DU44g="; +} diff --git a/manifests/forc-publish-0.42.0.nix b/manifests/forc-publish-0.42.0.nix new file mode 100644 index 00000000..943adc04 --- /dev/null +++ b/manifests/forc-publish-0.42.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.42.0"; + date = "2023-07-06"; + url = "https://github.com/fuellabs/sway"; + rev = "c4e4ef7e4ae52a21ae1aa709d1f43ac680987bd1"; + sha256 = "sha256-6kSeffKJqJCA4jpfFSDFOpu/d15qeh4lk/CYp/qd148="; +} diff --git a/manifests/forc-publish-0.42.1.nix b/manifests/forc-publish-0.42.1.nix new file mode 100644 index 00000000..3b76ffb0 --- /dev/null +++ b/manifests/forc-publish-0.42.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.42.1"; + date = "2023-07-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3b66f8e424bd21e3ba467783b10b36e808cfa6ee"; + sha256 = "sha256-lFBConaiCIcElcN35eZH8WW+opGc2bur+UZkw8wPtTw="; +} diff --git a/manifests/forc-publish-0.43.0.nix b/manifests/forc-publish-0.43.0.nix new file mode 100644 index 00000000..796ab994 --- /dev/null +++ b/manifests/forc-publish-0.43.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.43.0"; + date = "2023-08-02"; + url = "https://github.com/fuellabs/sway"; + rev = "3efc60e22b4a7b6898b2cb0c678a36fccbe1b9c9"; + sha256 = "sha256-V56LmioCJyq50586GqeveEj79Yd1j859BbYW6yJAuow="; +} diff --git a/manifests/forc-publish-0.43.1.nix b/manifests/forc-publish-0.43.1.nix new file mode 100644 index 00000000..8f96c1b9 --- /dev/null +++ b/manifests/forc-publish-0.43.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.43.1"; + date = "2023-08-03"; + url = "https://github.com/fuellabs/sway"; + rev = "923157bcf1dbda7f3a58effcef22fcccd11fcfbc"; + sha256 = "sha256-/Tr9oexI8EyIQdp45VvaHGGlRc5jyK4B0a/8mUrflnI="; +} diff --git a/manifests/forc-publish-0.43.2.nix b/manifests/forc-publish-0.43.2.nix new file mode 100644 index 00000000..f70e7d50 --- /dev/null +++ b/manifests/forc-publish-0.43.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.43.2"; + date = "2023-08-03"; + url = "https://github.com/fuellabs/sway"; + rev = "d8cf6118405164359fdf420c95cd07342e0eca8b"; + sha256 = "sha256-g4u8pGUaxRAZ+t3qo5NamSciWDSeQIKZIORvAUcAFuI="; +} diff --git a/manifests/forc-publish-0.44.0.nix b/manifests/forc-publish-0.44.0.nix new file mode 100644 index 00000000..bbf48ba4 --- /dev/null +++ b/manifests/forc-publish-0.44.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.44.0"; + date = "2023-08-14"; + url = "https://github.com/fuellabs/sway"; + rev = "241d30f7cde5cdd1f378eb2bc1daae945f329d0c"; + sha256 = "sha256-xYpxwBARtWVgLm9yN50/5olOJ8smGCPYZY8kVbrxXuI="; +} diff --git a/manifests/forc-publish-0.44.1.nix b/manifests/forc-publish-0.44.1.nix new file mode 100644 index 00000000..124db71e --- /dev/null +++ b/manifests/forc-publish-0.44.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.44.1"; + date = "2023-08-16"; + url = "https://github.com/fuellabs/sway"; + rev = "04a597093e7441898933dd412b8e4dc6ac860cd3"; + sha256 = "sha256-Up8C2e27cM8UYr52jhxA84tNz0CeFpLepH7A/l025v4="; +} diff --git a/manifests/forc-publish-0.45.0.nix b/manifests/forc-publish-0.45.0.nix new file mode 100644 index 00000000..db6b779b --- /dev/null +++ b/manifests/forc-publish-0.45.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.45.0"; + date = "2023-08-25"; + url = "https://github.com/fuellabs/sway"; + rev = "92dc9f361a9508a940c0d0708130f26fa044f6b3"; + sha256 = "sha256-NUuym7X6HslAVjdq7kPTidzuXlGth+YPY2LBuiokIkw="; +} diff --git a/manifests/forc-publish-0.46.0.nix b/manifests/forc-publish-0.46.0.nix new file mode 100644 index 00000000..b4282b6c --- /dev/null +++ b/manifests/forc-publish-0.46.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.46.0"; + date = "2023-09-14"; + url = "https://github.com/fuellabs/sway"; + rev = "e75f14b03636bc96751a6760304a1a6d3eb5937d"; + sha256 = "sha256-mTqo8B7XUbherC9XBpDtlEtjewCxEzn6yC2kmiCFjVI="; +} diff --git a/manifests/forc-publish-0.46.1.nix b/manifests/forc-publish-0.46.1.nix new file mode 100644 index 00000000..f216a627 --- /dev/null +++ b/manifests/forc-publish-0.46.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.46.1"; + date = "2023-09-28"; + url = "https://github.com/fuellabs/sway"; + rev = "512a3386f8961185188302f391ccc96553d23a7a"; + sha256 = "sha256-pqoyYzUCeyBL0dy0uCSqaMxcR+yqu7ZBUNIMuyQy0EY="; +} diff --git a/manifests/forc-publish-0.47.0.nix b/manifests/forc-publish-0.47.0.nix new file mode 100644 index 00000000..cda9540c --- /dev/null +++ b/manifests/forc-publish-0.47.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.47.0"; + date = "2023-11-06"; + url = "https://github.com/fuellabs/sway"; + rev = "34265301c6037d51444899a99df1cfc563df6016"; + sha256 = "sha256-lsYDHU3In4tSL8nof1iA+dXemVMP3v56kDJJ+/Tj79A="; +} diff --git a/manifests/forc-publish-0.48.0.nix b/manifests/forc-publish-0.48.0.nix new file mode 100644 index 00000000..be5b4225 --- /dev/null +++ b/manifests/forc-publish-0.48.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.48.0"; + date = "2023-12-06"; + url = "https://github.com/fuellabs/sway"; + rev = "e451140ce0a804e00de7936d2f569f1df3ec7b21"; + sha256 = "sha256-gSkH4a213nmk3Tt7UeTBpViLiQnJetVJYekMi/hJEWI="; +} diff --git a/manifests/forc-publish-0.48.1.nix b/manifests/forc-publish-0.48.1.nix new file mode 100644 index 00000000..f491affe --- /dev/null +++ b/manifests/forc-publish-0.48.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.48.1"; + date = "2023-12-06"; + url = "https://github.com/fuellabs/sway"; + rev = "6886ef050ce62afd3fe3186ed562fd33bd76bffa"; + sha256 = "sha256-qVwtmDqAut7C0Cx0fngAxXpDOIsMV20xx0Hl8cDw4Dg="; +} diff --git a/manifests/forc-publish-0.49.0.nix b/manifests/forc-publish-0.49.0.nix new file mode 100644 index 00000000..5faebc44 --- /dev/null +++ b/manifests/forc-publish-0.49.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.49.0"; + date = "2024-01-18"; + url = "https://github.com/fuellabs/sway"; + rev = "a17fbf3e7d8dc9845458260c343b4d8f006f3633"; + sha256 = "sha256-kNy0O+DO9Xnlv41+gTzELqTaKfaYTkghy+wsLFiHm0Q="; +} diff --git a/manifests/forc-publish-0.49.1.nix b/manifests/forc-publish-0.49.1.nix new file mode 100644 index 00000000..4f114e46 --- /dev/null +++ b/manifests/forc-publish-0.49.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.49.1"; + date = "2024-01-19"; + url = "https://github.com/fuellabs/sway"; + rev = "2ac7030570f22510b0ac2a7b5ddf7baa20bdc0e1"; + sha256 = "sha256-XPcInwiDCSlwOt5VMYEH3g3hY/o9VvHVvL1q25x2Fkg="; +} diff --git a/manifests/forc-publish-0.49.2.nix b/manifests/forc-publish-0.49.2.nix new file mode 100644 index 00000000..51d937ae --- /dev/null +++ b/manifests/forc-publish-0.49.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.49.2"; + date = "2024-02-02"; + url = "https://github.com/fuellabs/sway"; + rev = "a70c746d27b3300beef896ccd1dcce1299836192"; + sha256 = "sha256-R07m9fTIbsJURYmH1HVFTK87rwp0JwYHnD+vrHH8LTw="; +} diff --git a/manifests/forc-publish-0.49.3-patch.1.nix b/manifests/forc-publish-0.49.3-patch.1.nix new file mode 100644 index 00000000..629e27c6 --- /dev/null +++ b/manifests/forc-publish-0.49.3-patch.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.49.3-patch.1"; + date = "2024-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "0dc6570377ee9c4a6359ade597fa27351e02a728"; + sha256 = "sha256-wqNERqRNtL0OfQPoJqLDFBB8bMiyA1TIAkTpsdPqrAQ="; +} diff --git a/manifests/forc-publish-0.49.3.nix b/manifests/forc-publish-0.49.3.nix new file mode 100644 index 00000000..62e26116 --- /dev/null +++ b/manifests/forc-publish-0.49.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.49.3"; + date = "2024-03-08"; + url = "https://github.com/fuellabs/sway"; + rev = "0dc6570377ee9c4a6359ade597fa27351e02a728"; + sha256 = "sha256-wqNERqRNtL0OfQPoJqLDFBB8bMiyA1TIAkTpsdPqrAQ="; +} diff --git a/manifests/forc-publish-0.5.0.nix b/manifests/forc-publish-0.5.0.nix new file mode 100644 index 00000000..b8890a34 --- /dev/null +++ b/manifests/forc-publish-0.5.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.5.0"; + date = "2022-02-28"; + url = "https://github.com/fuellabs/sway"; + rev = "5c58c09ffba1719b187a3e1112639eec649eab5e"; + sha256 = "sha256-11OIZruYjYrylHv8zQOfLW9Fzs0p7aGOWQfq7UQN+5w="; +} diff --git a/manifests/forc-publish-0.50.0.nix b/manifests/forc-publish-0.50.0.nix new file mode 100644 index 00000000..e83c77bc --- /dev/null +++ b/manifests/forc-publish-0.50.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.50.0"; + date = "2024-02-07"; + url = "https://github.com/fuellabs/sway"; + rev = "11231184a073a3e9c179d1d2e68c90d205638d45"; + sha256 = "sha256-C3iFrYeTRgfodJjhHL5LlT++2vu0qW9aAQ40T0ixc9I="; +} diff --git a/manifests/forc-publish-0.51.0.nix b/manifests/forc-publish-0.51.0.nix new file mode 100644 index 00000000..52b2871c --- /dev/null +++ b/manifests/forc-publish-0.51.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.51.0"; + date = "2024-02-22"; + url = "https://github.com/fuellabs/sway"; + rev = "694457da6a507ecee047c1ef8a5865ef4cc07147"; + sha256 = "sha256-tk75ovG3ZxQCe3f13LNLxiBcQT9nf4ZuoIaip0RQgLQ="; +} diff --git a/manifests/forc-publish-0.51.1.nix b/manifests/forc-publish-0.51.1.nix new file mode 100644 index 00000000..f35d5d44 --- /dev/null +++ b/manifests/forc-publish-0.51.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.51.1"; + date = "2024-02-23"; + url = "https://github.com/fuellabs/sway"; + rev = "d1e8f019c1da46273c3d3a72b385ce356ba2bc20"; + sha256 = "sha256-bFuBpcZE0CZGmm5wWURhTIZaVSHxL1e0Bs57UhGZWTI="; +} diff --git a/manifests/forc-publish-0.52.0.nix b/manifests/forc-publish-0.52.0.nix new file mode 100644 index 00000000..1ade7ac9 --- /dev/null +++ b/manifests/forc-publish-0.52.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.52.0"; + date = "2024-03-27"; + url = "https://github.com/fuellabs/sway"; + rev = "98d8f4cadbac34f232926b9a44b1170ec9da425d"; + sha256 = "sha256-toAWqJlcXknCUsU1+sQefUZKtFdwrBFmmGL8/5TE8NI="; +} diff --git a/manifests/forc-publish-0.52.1.nix b/manifests/forc-publish-0.52.1.nix new file mode 100644 index 00000000..644c3872 --- /dev/null +++ b/manifests/forc-publish-0.52.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.52.1"; + date = "2024-04-03"; + url = "https://github.com/fuellabs/sway"; + rev = "c1ea517f0522c780ca41120247cde2f450605a3c"; + sha256 = "sha256-PwKDmmPRGMlNqBMrMycdoFFCvBfD6Ly+mimg3AI4sAI="; +} diff --git a/manifests/forc-publish-0.53.0.nix b/manifests/forc-publish-0.53.0.nix new file mode 100644 index 00000000..60899730 --- /dev/null +++ b/manifests/forc-publish-0.53.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.53.0"; + date = "2024-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "b30f0e83d3f3d336007e3dfce45a48a87e731345"; + sha256 = "sha256-PYr3xSTIhBNC1RDbr2IVp6HjHydURhCS3cyBZB1jhuY="; +} diff --git a/manifests/forc-publish-0.54.0.nix b/manifests/forc-publish-0.54.0.nix new file mode 100644 index 00000000..a3435ec8 --- /dev/null +++ b/manifests/forc-publish-0.54.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.54.0"; + date = "2024-04-13"; + url = "https://github.com/fuellabs/sway"; + rev = "d90cbc8419e47283519e39046c3ea5616e64df84"; + sha256 = "sha256-bI5+vL8dVpAuRMcrznrYhnMUPpax6Q0iC/w7sps3ims="; +} diff --git a/manifests/forc-publish-0.55.0.nix b/manifests/forc-publish-0.55.0.nix new file mode 100644 index 00000000..34ea41aa --- /dev/null +++ b/manifests/forc-publish-0.55.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.55.0"; + date = "2024-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "60ea55e692f4f70730b500735e13c29df2ac727e"; + sha256 = "sha256-zfIGerybZgEYDqYIWD5r/iQLJFJTzmvoJKqUqmwwF6Q="; +} diff --git a/manifests/forc-publish-0.56.0.nix b/manifests/forc-publish-0.56.0.nix new file mode 100644 index 00000000..225fbcec --- /dev/null +++ b/manifests/forc-publish-0.56.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.56.0"; + date = "2024-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "b495d0df6956524fd68dab7e062df04d2e581ac3"; + sha256 = "sha256-ag0rl2Q0a+J03SRhj4dh19pbvKVt8PJ83XKkRlDq+vo="; +} diff --git a/manifests/forc-publish-0.56.1.nix b/manifests/forc-publish-0.56.1.nix new file mode 100644 index 00000000..8b2ba2fb --- /dev/null +++ b/manifests/forc-publish-0.56.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.56.1"; + date = "2024-05-08"; + url = "https://github.com/fuellabs/sway"; + rev = "4a63b41de136ab68bdf396c6720708fbf4dca83e"; + sha256 = "sha256-FW8P8+dujrVbUz1YyL+OSzOmpsDy1Ggaf3S6U4fHDtk="; +} diff --git a/manifests/forc-publish-0.57.0.nix b/manifests/forc-publish-0.57.0.nix new file mode 100644 index 00000000..f539d5cc --- /dev/null +++ b/manifests/forc-publish-0.57.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.57.0"; + date = "2024-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "8148817c02b0015ac3f299a8935f9a73d395a35e"; + sha256 = "sha256-jwTGhefYuJybXizPV/TLWQ60JNGSzyexzYTHk4lVDQU="; +} diff --git a/manifests/forc-publish-0.58.0.nix b/manifests/forc-publish-0.58.0.nix new file mode 100644 index 00000000..4b8056f6 --- /dev/null +++ b/manifests/forc-publish-0.58.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.58.0"; + date = "2024-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "9579dd2f77c8597995d6d7d2995640c26cfb3fe4"; + sha256 = "sha256-3KqSYUixgLALy+eZWxOyjjwJR/mXpdUaygPGdEnSYlA="; +} diff --git a/manifests/forc-publish-0.59.0.nix b/manifests/forc-publish-0.59.0.nix new file mode 100644 index 00000000..3d90d066 --- /dev/null +++ b/manifests/forc-publish-0.59.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.59.0"; + date = "2024-05-17"; + url = "https://github.com/fuellabs/sway"; + rev = "d9985d8111f94235edba9a08fc71a9513ec2a95c"; + sha256 = "sha256-eXTLIonA9dyRCed1vUGsR8nrjq7Dm3T/eKdQ95+iqUs="; +} diff --git a/manifests/forc-publish-0.6.0.nix b/manifests/forc-publish-0.6.0.nix new file mode 100644 index 00000000..820a6ed2 --- /dev/null +++ b/manifests/forc-publish-0.6.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.6.0"; + date = "2022-03-07"; + url = "https://github.com/fuellabs/sway"; + rev = "35e5a2f12e137953b82470e9637e4969ca064e4a"; + sha256 = "sha256-HKmNBduWtyIoaUwkj2Nu9GznUOoZFctcaRhFJOnTWLY="; +} diff --git a/manifests/forc-publish-0.6.1.nix b/manifests/forc-publish-0.6.1.nix new file mode 100644 index 00000000..8cd52eb4 --- /dev/null +++ b/manifests/forc-publish-0.6.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.6.1"; + date = "2022-03-10"; + url = "https://github.com/fuellabs/sway"; + rev = "3268092ce50e5058b11a5ea2e7f35c6e19352d68"; + sha256 = "sha256-JOH4UosK8x7FmMqx2qkEqWnyO+z9XPl1C/BrnXWz4uw="; +} diff --git a/manifests/forc-publish-0.60.0.nix b/manifests/forc-publish-0.60.0.nix new file mode 100644 index 00000000..3e658046 --- /dev/null +++ b/manifests/forc-publish-0.60.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.60.0"; + date = "2024-05-22"; + url = "https://github.com/fuellabs/sway"; + rev = "2f0392ee35a1e4dd80bd8034962d5b4083dfb8b6"; + sha256 = "sha256-2y1wRiRnY8Z5lgnIeu6BYQFVtJPHmDpaeHZVceeqjiA="; +} diff --git a/manifests/forc-publish-0.61.0.nix b/manifests/forc-publish-0.61.0.nix new file mode 100644 index 00000000..9e54af5f --- /dev/null +++ b/manifests/forc-publish-0.61.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.61.0"; + date = "2024-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "4b4fb53eb2ef3390a0186a7048b060ff8e973a15"; + sha256 = "sha256-lM9Hzl70uO/QtOhDf6hN4ulOFSo9M5UaVTK22Y6rjJc="; +} diff --git a/manifests/forc-publish-0.61.1.nix b/manifests/forc-publish-0.61.1.nix new file mode 100644 index 00000000..92e63a34 --- /dev/null +++ b/manifests/forc-publish-0.61.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.61.1"; + date = "2024-07-02"; + url = "https://github.com/fuellabs/sway"; + rev = "d86bb863697550b76f9209894e7a4ed84d1a8f39"; + sha256 = "sha256-O/KRqfnTeS2Z01GvCiCzu/Iwg/ccC+Tp/MO9mjY9wf0="; +} diff --git a/manifests/forc-publish-0.61.2.nix b/manifests/forc-publish-0.61.2.nix new file mode 100644 index 00000000..eafac24a --- /dev/null +++ b/manifests/forc-publish-0.61.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.61.2"; + date = "2024-07-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e1b1c2bee73e0ba825e07736cefa6c0abd079595"; + sha256 = "sha256-HOmwpzWp02DkXK+wiL2vCvuOKdFQNlPEvxMLGgfL11I="; +} diff --git a/manifests/forc-publish-0.62.0.nix b/manifests/forc-publish-0.62.0.nix new file mode 100644 index 00000000..0870847a --- /dev/null +++ b/manifests/forc-publish-0.62.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.62.0"; + date = "2024-07-18"; + url = "https://github.com/fuellabs/sway"; + rev = "efda0397c7bee77de73bd726ec0b732d57614973"; + sha256 = "sha256-24306qdH3UupJ8iGYcCAJRmWow7o/0e1ym7htSRPTjE="; +} diff --git a/manifests/forc-publish-0.63.0.nix b/manifests/forc-publish-0.63.0.nix new file mode 100644 index 00000000..e9a458a2 --- /dev/null +++ b/manifests/forc-publish-0.63.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.63.0"; + date = "2024-08-19"; + url = "https://github.com/fuellabs/sway"; + rev = "da9b3230706bfbe6e4efec179b7ddc0322909b57"; + sha256 = "sha256-P5zhjVT5uwYcdprPN6gZ6UbiML0KLkw4CwNOkBlCIAE="; +} diff --git a/manifests/forc-publish-0.63.1.nix b/manifests/forc-publish-0.63.1.nix new file mode 100644 index 00000000..6098712d --- /dev/null +++ b/manifests/forc-publish-0.63.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.63.1"; + date = "2024-08-19"; + url = "https://github.com/fuellabs/sway"; + rev = "169f91ae0a6a698bd1cb459c4c203bab646a38ec"; + sha256 = "sha256-/9medkNesN+JuYEBasGDmhzZEMeCC4PVh2VKrTkb8NI="; +} diff --git a/manifests/forc-publish-0.63.2.nix b/manifests/forc-publish-0.63.2.nix new file mode 100644 index 00000000..c7e1475a --- /dev/null +++ b/manifests/forc-publish-0.63.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.63.2"; + date = "2024-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "a9e83955bcb50aa1a8b95d04235066b3dd34c9c4"; + sha256 = "sha256-mCFw0F0HC4hrNUdnfMePO1DSWQE/CvKpXbdMwbq4RQQ="; +} diff --git a/manifests/forc-publish-0.63.3.nix b/manifests/forc-publish-0.63.3.nix new file mode 100644 index 00000000..2d736dc6 --- /dev/null +++ b/manifests/forc-publish-0.63.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.63.3"; + date = "2024-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "f55c81cce61aac31913ac0e87306cbaed7da679a"; + sha256 = "sha256-SLdimVN0rjpKrWcAF3Kg3+DgyGT/zbkvePIdZrayH6Q="; +} diff --git a/manifests/forc-publish-0.63.4.nix b/manifests/forc-publish-0.63.4.nix new file mode 100644 index 00000000..7b233ebc --- /dev/null +++ b/manifests/forc-publish-0.63.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.63.4"; + date = "2024-09-05"; + url = "https://github.com/fuellabs/sway"; + rev = "2538442a67f893f2e878214ba37a11b51f4ed41e"; + sha256 = "sha256-TA4HerMYUBunE+wyPwYS3z9ziSThJdEAcX81Hx8VZSI="; +} diff --git a/manifests/forc-publish-0.63.5.nix b/manifests/forc-publish-0.63.5.nix new file mode 100644 index 00000000..58cb922e --- /dev/null +++ b/manifests/forc-publish-0.63.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.63.5"; + date = "2024-09-06"; + url = "https://github.com/fuellabs/sway"; + rev = "31a1d6f98395f571cd3674b492d9bf4773c55f65"; + sha256 = "sha256-WZkfaz+4mU3TydLoBxoaKdzMCLPq8hISg0GCmFujuh4="; +} diff --git a/manifests/forc-publish-0.63.6.nix b/manifests/forc-publish-0.63.6.nix new file mode 100644 index 00000000..d8df8cb2 --- /dev/null +++ b/manifests/forc-publish-0.63.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.63.6"; + date = "2024-09-18"; + url = "https://github.com/fuellabs/sway"; + rev = "cba9a005ef2a5b61e13eb02ba6e9e93ebd19a31a"; + sha256 = "sha256-9JH/vWzDBAMENzp7gFtSrP68AimsrmqfEhRaS6Aw6TM="; +} diff --git a/manifests/forc-publish-0.64.0.nix b/manifests/forc-publish-0.64.0.nix new file mode 100644 index 00000000..0c4c10bb --- /dev/null +++ b/manifests/forc-publish-0.64.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.64.0"; + date = "2024-09-25"; + url = "https://github.com/fuellabs/sway"; + rev = "2156bfbbee01ffb85bfca2aae8f185f8e7c715a4"; + sha256 = "sha256-HtzITm4CMH3td35GSGTCzcBzUSjzH/TAu7SwEzjbA3c="; +} diff --git a/manifests/forc-publish-0.65.0.nix b/manifests/forc-publish-0.65.0.nix new file mode 100644 index 00000000..a970be21 --- /dev/null +++ b/manifests/forc-publish-0.65.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.65.0"; + date = "2024-10-06"; + url = "https://github.com/fuellabs/sway"; + rev = "32d1cc91dc3cf8fbda12fe217e563b139feef8a7"; + sha256 = "sha256-Et4e/N8pKQdrMH9g5ZrAqsk++2n40mv/iTVx4p5PuUM="; +} diff --git a/manifests/forc-publish-0.65.1.nix b/manifests/forc-publish-0.65.1.nix new file mode 100644 index 00000000..4691038f --- /dev/null +++ b/manifests/forc-publish-0.65.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.65.1"; + date = "2024-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "3a9c171cd43611d7ccad94ab66a5093c6634717b"; + sha256 = "sha256-6KoM3dIOS+6HJ8/mfQtzeX8efrRc3EjcXpU32RAmXiU="; +} diff --git a/manifests/forc-publish-0.65.2.nix b/manifests/forc-publish-0.65.2.nix new file mode 100644 index 00000000..cb0df6e5 --- /dev/null +++ b/manifests/forc-publish-0.65.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.65.2"; + date = "2024-10-07"; + url = "https://github.com/fuellabs/sway"; + rev = "66bb430395daf5b8f7205f7b9d8d008e2e812d54"; + sha256 = "sha256-J1/9pvWYBdZY4vPd9T0MGsg2g6OtZQG4KWk8QlKVtG8="; +} diff --git a/manifests/forc-publish-0.66.0.nix b/manifests/forc-publish-0.66.0.nix new file mode 100644 index 00000000..a7fbd8cc --- /dev/null +++ b/manifests/forc-publish-0.66.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.0"; + date = "2024-10-15"; + url = "https://github.com/fuellabs/sway"; + rev = "b7e59f42aebed08c2e015cbd5d0776c8953fc57f"; + sha256 = "sha256-9iIlZi2eMIcyGylR9mkXANaBcfOJk308f3DArLwjDGM="; +} diff --git a/manifests/forc-publish-0.66.1.nix b/manifests/forc-publish-0.66.1.nix new file mode 100644 index 00000000..c8a34135 --- /dev/null +++ b/manifests/forc-publish-0.66.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.1"; + date = "2024-10-15"; + url = "https://github.com/fuellabs/sway"; + rev = "d5662c6bd0e5519446aa1b3ebb6af703025accec"; + sha256 = "sha256-Uf8qe94rUZhInAM/o0ue/W5vNW1bpubqYaWt6OVE2Aw="; +} diff --git a/manifests/forc-publish-0.66.10.nix b/manifests/forc-publish-0.66.10.nix new file mode 100644 index 00000000..64bf0dcf --- /dev/null +++ b/manifests/forc-publish-0.66.10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.10"; + date = "2025-03-11"; + url = "https://github.com/fuellabs/sway"; + rev = "6c00a44822ce2bec4d0754ef285566a8b8de72fb"; + sha256 = "sha256-cfFsArmLkpXUvwO3Jf3KkFYU7MmMyxEbVUEsUvzZtpA="; +} diff --git a/manifests/forc-publish-0.66.2.nix b/manifests/forc-publish-0.66.2.nix new file mode 100644 index 00000000..855203ee --- /dev/null +++ b/manifests/forc-publish-0.66.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.2"; + date = "2024-10-16"; + url = "https://github.com/fuellabs/sway"; + rev = "31486c0b47669612acb7c64d66ecb50aea281282"; + sha256 = "sha256-k/53TarSPDFgljkqMb41ecV+aiqWDNwzZRBoPk4Itps="; +} diff --git a/manifests/forc-publish-0.66.3.nix b/manifests/forc-publish-0.66.3.nix new file mode 100644 index 00000000..4814de07 --- /dev/null +++ b/manifests/forc-publish-0.66.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.3"; + date = "2024-10-30"; + url = "https://github.com/fuellabs/sway"; + rev = "5b7d720cf97e88eedc3c069b617ee7493bb16637"; + sha256 = "sha256-35bHX4r/WB3peaTJ5qK2TV3xRtxx5nBxUpDA+4oOlm4="; +} diff --git a/manifests/forc-publish-0.66.4.nix b/manifests/forc-publish-0.66.4.nix new file mode 100644 index 00000000..98fefa67 --- /dev/null +++ b/manifests/forc-publish-0.66.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.4"; + date = "2024-11-03"; + url = "https://github.com/fuellabs/sway"; + rev = "d7dd104dac4394aa7af56f05b720c975744db853"; + sha256 = "sha256-lpX7PSEE+glDj7284dRC7KtU4yIfjRnQZnySaTL+AQc="; +} diff --git a/manifests/forc-publish-0.66.5.nix b/manifests/forc-publish-0.66.5.nix new file mode 100644 index 00000000..09025e8b --- /dev/null +++ b/manifests/forc-publish-0.66.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.5"; + date = "2024-11-21"; + url = "https://github.com/fuellabs/sway"; + rev = "94a066652468b4afa3bd396dacef482ed590976b"; + sha256 = "sha256-+8fwP6jkBr5hyzDBZmcAXDq8ciu5PrsZDmDrA8gEzA0="; +} diff --git a/manifests/forc-publish-0.66.6.nix b/manifests/forc-publish-0.66.6.nix new file mode 100644 index 00000000..1996540d --- /dev/null +++ b/manifests/forc-publish-0.66.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.6"; + date = "2025-01-23"; + url = "https://github.com/fuellabs/sway"; + rev = "986aee2c1e34c9cd958c81e7fd6b84638b26619b"; + sha256 = "sha256-O4pyhoFbxQ5O00OH8DZZTns3l4QGGFvr3gmqanToMD8="; +} diff --git a/manifests/forc-publish-0.66.7.nix b/manifests/forc-publish-0.66.7.nix new file mode 100644 index 00000000..206baedf --- /dev/null +++ b/manifests/forc-publish-0.66.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.7"; + date = "2025-02-05"; + url = "https://github.com/fuellabs/sway"; + rev = "5ed7cec6dbcd42f0c2f84df8511a4c0007b1902e"; + sha256 = "sha256-xuyG/6Kkr4w1lKTb4VkdC/zf5+RaC9HfgOYcsJmV2sc="; +} diff --git a/manifests/forc-publish-0.66.8.nix b/manifests/forc-publish-0.66.8.nix new file mode 100644 index 00000000..7168ed70 --- /dev/null +++ b/manifests/forc-publish-0.66.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.8"; + date = "2025-03-05"; + url = "https://github.com/fuellabs/sway"; + rev = "ba46576c8601aadf23532de001375879f72f109b"; + sha256 = "sha256-95FNf10T4HmIV2Uj6hHps4SQduIKS7pMEeTgaVxSKQk="; +} diff --git a/manifests/forc-publish-0.66.9.nix b/manifests/forc-publish-0.66.9.nix new file mode 100644 index 00000000..57bfed05 --- /dev/null +++ b/manifests/forc-publish-0.66.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.66.9"; + date = "2025-03-11"; + url = "https://github.com/fuellabs/sway"; + rev = "ef377e78bf597ea3b324f6b021a105b232d1cd98"; + sha256 = "sha256-3yeZrK2+x+apfQ7GyebOT65TgPNqrwB7Wsr+dve6H0Q="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-01.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-01.nix new file mode 100644 index 00000000..d5c0e5d1 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-01"; + url = "https://github.com/fuellabs/sway"; + rev = "4eb0705fce706299c8d2efcf967edd58a9679fca"; + sha256 = "sha256-+w495nHeddHIj3hBbl34nE3nnFuEtUZEDefV3uqhyJQ="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-02.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-02.nix new file mode 100644 index 00000000..fe6ee835 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-02"; + url = "https://github.com/fuellabs/sway"; + rev = "34aa19ca86fe1b5b5eea87ef0d13708bd62796c2"; + sha256 = "sha256-W3cgYBZ16gmKjHniHklMcaHJqQ2VgK+89uUs217uBP8="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-03.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-03.nix new file mode 100644 index 00000000..24006dca --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-03"; + url = "https://github.com/fuellabs/sway"; + rev = "c1b63c87b21452d51d2b3244328d1ca9cb9dc3ef"; + sha256 = "sha256-wf0YdiVZM+lPcm3rN3TxIfz/uesiElQ0BAec2iktleE="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-04.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-04.nix new file mode 100644 index 00000000..3711c4e6 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-04"; + url = "https://github.com/fuellabs/sway"; + rev = "f11c5cd6cdff86b1bd106cd0fb86604a5d350720"; + sha256 = "sha256-Xjr1c1HAqytooSuDLvtVIoCo1xGB8sxl2O2MNCCcfUY="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-05.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-05.nix new file mode 100644 index 00000000..e0d06929 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-05"; + url = "https://github.com/fuellabs/sway"; + rev = "8e162c9661fb566255cad6113a8cfcda8d7d7dca"; + sha256 = "sha256-NojfLZBf5CSPp7JQvgiG1GWfsF9DCYUt5uufOEQJzf8="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-08.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-08.nix new file mode 100644 index 00000000..a260d8b5 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-08"; + url = "https://github.com/fuellabs/sway"; + rev = "b59e1b627d0e8f1f904c28d681ccc66cf2830542"; + sha256 = "sha256-8aMBJhA+64WeAh+JEOkFvAG2F1xI6mBiC7D8ZDOkrrA="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-09.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-09.nix new file mode 100644 index 00000000..d63e4714 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-09"; + url = "https://github.com/fuellabs/sway"; + rev = "1c68f1c9e0cc7ec34a7195e11d92891290aaa8de"; + sha256 = "sha256-m9c+pCaoYwWLQi7cDuMLJm7xqI1PFs/bJ6X/8JN0Wbg="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-10.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-10.nix new file mode 100644 index 00000000..b9c0ac43 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-10"; + url = "https://github.com/fuellabs/sway"; + rev = "4d18d527495483af3c7d81543da347cfaa236147"; + sha256 = "sha256-sMQnl/QZVpkJnOsYDw322ERey+SNB9Fe4nev4Wk/Fro="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-11.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-11.nix new file mode 100644 index 00000000..fbedb3a6 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-11"; + url = "https://github.com/fuellabs/sway"; + rev = "ba3a0d56352ed7a95c7f901ab094954d003e7098"; + sha256 = "sha256-AyhTCZke7FbmJn5O53ZElsUXsQqvfLyf2J7uvluqoNo="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-14.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-14.nix new file mode 100644 index 00000000..17931c63 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-14"; + url = "https://github.com/fuellabs/sway"; + rev = "f4477cfb909e6d153133df352c147d4ee2ad6f3f"; + sha256 = "sha256-vIoJ8iW3NC278+VnhaSwb7GrcBGIdHmLsbWc6Y53RL0="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-15.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-15.nix new file mode 100644 index 00000000..7d82e86e --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-15"; + url = "https://github.com/fuellabs/sway"; + rev = "8c132f1b56afa491e044147c647bec1059c9ef81"; + sha256 = "sha256-nUp9I2y6b8BVKdlVUD0PWOKrMo0CJynSyyZxd3saav4="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-16.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-16.nix new file mode 100644 index 00000000..727d164b --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-16.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-16"; + url = "https://github.com/fuellabs/sway"; + rev = "ddec15af093f6be7f0ef983dbd1040764c7e2bf8"; + sha256 = "sha256-JLTmnhL1eLG7iynyr0ulHqOllmJH9sdFqb/24KZJeIE="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-17.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-17.nix new file mode 100644 index 00000000..fca8069b --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-17.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-17"; + url = "https://github.com/fuellabs/sway"; + rev = "8c2af95cc36dc034a4e21669ae6b8d5e49eadbca"; + sha256 = "sha256-P0LOySjweT23bu4xycNzUZv6D18IGglouTRERecGDEg="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-18.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-18.nix new file mode 100644 index 00000000..f21ad4e7 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-18"; + url = "https://github.com/fuellabs/sway"; + rev = "3afc5c18c87b82ac00ffd38a81de01d534af087b"; + sha256 = "sha256-+MWlXlp7dJXv8gY+qZ8wNvxa8U9u7J1Uhlxl654uw8A="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-20.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-20.nix new file mode 100644 index 00000000..a998bfcc --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-20"; + url = "https://github.com/fuellabs/sway"; + rev = "7cb78097d0bfbed1e3196639c2aff50a2c02666b"; + sha256 = "sha256-FznW8ID2ykfvqBkCRn96vC3hharM6SWoX6VUpv6OxIM="; +} diff --git a/manifests/forc-publish-0.67.0-nightly-2025-04-22.nix b/manifests/forc-publish-0.67.0-nightly-2025-04-22.nix new file mode 100644 index 00000000..f408b0a4 --- /dev/null +++ b/manifests/forc-publish-0.67.0-nightly-2025-04-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-04-22"; + url = "https://github.com/fuellabs/sway"; + rev = "f607a674e303bc497887beab06f022127cfd67b7"; + sha256 = "sha256-ABQBvGxHTZX5KzSzg+VXUIVZShBRuSVTDq742WP/Q5I="; +} diff --git a/manifests/forc-publish-0.67.0.nix b/manifests/forc-publish-0.67.0.nix new file mode 100644 index 00000000..7fc3d9be --- /dev/null +++ b/manifests/forc-publish-0.67.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.0"; + date = "2025-03-13"; + url = "https://github.com/fuellabs/sway"; + rev = "d821dcb0c7edb1d6e2a772f5a1ccefe38902eaec"; + sha256 = "sha256-PgElgNdhBb/moj5GTMT+uwhWMDOdPzRe37y4V7MTIYc="; +} diff --git a/manifests/forc-publish-0.67.1-nightly-2025-04-23.nix b/manifests/forc-publish-0.67.1-nightly-2025-04-23.nix new file mode 100644 index 00000000..dc59515b --- /dev/null +++ b/manifests/forc-publish-0.67.1-nightly-2025-04-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.1"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "6a896339a688eb4e0ddb2e966e8164f05742ca71"; + sha256 = "sha256-WUkC6JVB1NGHXXvmkHqkhzZ4K+ezhsvpVdqlvAQ3REM="; +} diff --git a/manifests/forc-publish-0.67.1.nix b/manifests/forc-publish-0.67.1.nix new file mode 100644 index 00000000..0aa8b4ec --- /dev/null +++ b/manifests/forc-publish-0.67.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.1"; + date = "2025-04-22"; + url = "https://github.com/fuellabs/sway"; + rev = "6a896339a688eb4e0ddb2e966e8164f05742ca71"; + sha256 = "sha256-WUkC6JVB1NGHXXvmkHqkhzZ4K+ezhsvpVdqlvAQ3REM="; +} diff --git a/manifests/forc-publish-0.67.2.nix b/manifests/forc-publish-0.67.2.nix new file mode 100644 index 00000000..f9cd8768 --- /dev/null +++ b/manifests/forc-publish-0.67.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.67.2"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "58a77073382e6992a40f21ed89dc4ea4d46010b1"; + sha256 = "sha256-BcTIuM6CazfMsjmubcuFsL0KC5JaVHyYn2UawLiyosc="; +} diff --git a/manifests/forc-publish-0.68.0-nightly-2025-04-24.nix b/manifests/forc-publish-0.68.0-nightly-2025-04-24.nix new file mode 100644 index 00000000..212e71fa --- /dev/null +++ b/manifests/forc-publish-0.68.0-nightly-2025-04-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.0"; + date = "2025-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "cbe8005a2388ec481d557aa4a58d7df96be9cad0"; + sha256 = "sha256-Oqp9k6fdhu0jIn/OTcZYwFRGOoL4neFmNkDkS48Nsc0="; +} diff --git a/manifests/forc-publish-0.68.0.nix b/manifests/forc-publish-0.68.0.nix new file mode 100644 index 00000000..c67f508b --- /dev/null +++ b/manifests/forc-publish-0.68.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.0"; + date = "2025-04-23"; + url = "https://github.com/fuellabs/sway"; + rev = "cbe8005a2388ec481d557aa4a58d7df96be9cad0"; + sha256 = "sha256-Oqp9k6fdhu0jIn/OTcZYwFRGOoL4neFmNkDkS48Nsc0="; +} diff --git a/manifests/forc-publish-0.68.1-nightly-2025-04-25.nix b/manifests/forc-publish-0.68.1-nightly-2025-04-25.nix new file mode 100644 index 00000000..f082cf8b --- /dev/null +++ b/manifests/forc-publish-0.68.1-nightly-2025-04-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.1"; + date = "2025-04-25"; + url = "https://github.com/fuellabs/sway"; + rev = "5f999595d377c2de6111836249614bae031d562e"; + sha256 = "sha256-Zfm1ImQ7w8igCFcXduW9rZ2etU/femHbxwPdVNd6/5s="; +} diff --git a/manifests/forc-publish-0.68.1-nightly-2025-04-26.nix b/manifests/forc-publish-0.68.1-nightly-2025-04-26.nix new file mode 100644 index 00000000..f9950674 --- /dev/null +++ b/manifests/forc-publish-0.68.1-nightly-2025-04-26.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.1"; + date = "2025-04-26"; + url = "https://github.com/fuellabs/sway"; + rev = "eb57cbf2849ed118f8f403954b545fd4d08a3643"; + sha256 = "sha256-w0r9OpTG1gSYk8xx53VLqA5fP6MzPJ6IWsHQdqwwhis="; +} diff --git a/manifests/forc-publish-0.68.1-nightly-2025-04-29.nix b/manifests/forc-publish-0.68.1-nightly-2025-04-29.nix new file mode 100644 index 00000000..b3df292b --- /dev/null +++ b/manifests/forc-publish-0.68.1-nightly-2025-04-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.1"; + date = "2025-04-29"; + url = "https://github.com/fuellabs/sway"; + rev = "76268dcff70744288297a778aae46df77eb5a2a7"; + sha256 = "sha256-7EEPnkERP5rkcekMiBMP8kmh6oBIcCP+NiNn5aGWKCE="; +} diff --git a/manifests/forc-publish-0.68.1-nightly-2025-04-30.nix b/manifests/forc-publish-0.68.1-nightly-2025-04-30.nix new file mode 100644 index 00000000..1f4eb7c0 --- /dev/null +++ b/manifests/forc-publish-0.68.1-nightly-2025-04-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.1"; + date = "2025-04-30"; + url = "https://github.com/fuellabs/sway"; + rev = "26e2ef875c10d7bab696c28f2127073422a7da15"; + sha256 = "sha256-qKjgPESiwmz9ZC6rOIvVAsiFkkrc6FBSMC3xwkFZghA="; +} diff --git a/manifests/forc-publish-0.68.1-nightly-2025-05-01.nix b/manifests/forc-publish-0.68.1-nightly-2025-05-01.nix new file mode 100644 index 00000000..f241aea3 --- /dev/null +++ b/manifests/forc-publish-0.68.1-nightly-2025-05-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.1"; + date = "2025-05-01"; + url = "https://github.com/fuellabs/sway"; + rev = "42321ef0e0eef3e4de690759d3d197a21a8a7aa0"; + sha256 = "sha256-tOjGwpoTNuRQvApDngxGrDHDAdao8p8mQ3VVbBJ4Arg="; +} diff --git a/manifests/forc-publish-0.68.1.nix b/manifests/forc-publish-0.68.1.nix new file mode 100644 index 00000000..a10b526a --- /dev/null +++ b/manifests/forc-publish-0.68.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.1"; + date = "2025-04-24"; + url = "https://github.com/fuellabs/sway"; + rev = "7e1bc152face6f1ae20b4274d98446100920e573"; + sha256 = "sha256-ME7GHU+Y9nrVJiI6OaHMyyPcPQYB57afi4/TAmx1Mcs="; +} diff --git a/manifests/forc-publish-0.68.2-nightly-2025-05-02.nix b/manifests/forc-publish-0.68.2-nightly-2025-05-02.nix new file mode 100644 index 00000000..e0d7823a --- /dev/null +++ b/manifests/forc-publish-0.68.2-nightly-2025-05-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.2"; + date = "2025-05-02"; + url = "https://github.com/fuellabs/sway"; + rev = "05480bb07ed7b62e4123a2696ba22bce57ffb049"; + sha256 = "sha256-12BK6qvONpLLM37jGY0lDfhHN+JT5TgjQfIueJrkY9E="; +} diff --git a/manifests/forc-publish-0.68.2-nightly-2025-05-03.nix b/manifests/forc-publish-0.68.2-nightly-2025-05-03.nix new file mode 100644 index 00000000..60f84299 --- /dev/null +++ b/manifests/forc-publish-0.68.2-nightly-2025-05-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.2"; + date = "2025-05-03"; + url = "https://github.com/fuellabs/sway"; + rev = "324f04fbab358a8e7eb729d03e0293605755ba5a"; + sha256 = "sha256-0gh3Yi3GUWf6QmXUtVPyIzJd8MjGBJtI5qLUu40txHM="; +} diff --git a/manifests/forc-publish-0.68.2-nightly-2025-05-06.nix b/manifests/forc-publish-0.68.2-nightly-2025-05-06.nix new file mode 100644 index 00000000..31cbfac3 --- /dev/null +++ b/manifests/forc-publish-0.68.2-nightly-2025-05-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.2"; + date = "2025-05-06"; + url = "https://github.com/fuellabs/sway"; + rev = "804d6df0d9c950dbdfc887e2ca6dc39be3abc23a"; + sha256 = "sha256-ioawcNFkhCeo0rMk5xL0gABv7ipkeWha35fS9Z6vlqc="; +} diff --git a/manifests/forc-publish-0.68.2-nightly-2025-05-07.nix b/manifests/forc-publish-0.68.2-nightly-2025-05-07.nix new file mode 100644 index 00000000..3b8a60ee --- /dev/null +++ b/manifests/forc-publish-0.68.2-nightly-2025-05-07.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.2"; + date = "2025-05-07"; + url = "https://github.com/fuellabs/sway"; + rev = "f635cc22ead32fedc2e0bcb1ed43f51f1c63090f"; + sha256 = "sha256-D6iuParzkjmyMjrUHmemvdtQgbaSaWeFhxQgvwKNhDQ="; +} diff --git a/manifests/forc-publish-0.68.2-nightly-2025-05-08.nix b/manifests/forc-publish-0.68.2-nightly-2025-05-08.nix new file mode 100644 index 00000000..1d050fde --- /dev/null +++ b/manifests/forc-publish-0.68.2-nightly-2025-05-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.2"; + date = "2025-05-08"; + url = "https://github.com/fuellabs/sway"; + rev = "8fb7a55f2145f2012d2d2df82b790e44a76106a1"; + sha256 = "sha256-Cq9aCSoap1QiqmIDLeqnAP6Uu1vx0A6tsDfD3jVz3W8="; +} diff --git a/manifests/forc-publish-0.68.2-nightly-2025-05-09.nix b/manifests/forc-publish-0.68.2-nightly-2025-05-09.nix new file mode 100644 index 00000000..c46af63c --- /dev/null +++ b/manifests/forc-publish-0.68.2-nightly-2025-05-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.2"; + date = "2025-05-09"; + url = "https://github.com/fuellabs/sway"; + rev = "bd3813606ad2c4685ae979c7d4443573642c929d"; + sha256 = "sha256-SQX3NYAWZDIGwYpzgx8i+4IWemHPn4Y+L1m4AY7el4Q="; +} diff --git a/manifests/forc-publish-0.68.2-nightly-2025-05-10.nix b/manifests/forc-publish-0.68.2-nightly-2025-05-10.nix new file mode 100644 index 00000000..87627937 --- /dev/null +++ b/manifests/forc-publish-0.68.2-nightly-2025-05-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.2"; + date = "2025-05-10"; + url = "https://github.com/fuellabs/sway"; + rev = "dffa29c5994988a2f7202793363c91a9e9476ee9"; + sha256 = "sha256-JXrQ9pL2fCkycFlYl77ZapokfPSLIAsQB3ouApH3jaw="; +} diff --git a/manifests/forc-publish-0.68.2-nightly-2025-05-13.nix b/manifests/forc-publish-0.68.2-nightly-2025-05-13.nix new file mode 100644 index 00000000..93c7e1c5 --- /dev/null +++ b/manifests/forc-publish-0.68.2-nightly-2025-05-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.2"; + date = "2025-05-13"; + url = "https://github.com/fuellabs/sway"; + rev = "7386b19846863ae6252800270587815520adc750"; + sha256 = "sha256-xT9wiL5n3PUSOWO0Bu56rhj09inWUNGJBKFuZ+B9y5I="; +} diff --git a/manifests/forc-publish-0.68.2.nix b/manifests/forc-publish-0.68.2.nix new file mode 100644 index 00000000..42cc4d13 --- /dev/null +++ b/manifests/forc-publish-0.68.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.2"; + date = "2025-05-01"; + url = "https://github.com/fuellabs/sway"; + rev = "05480bb07ed7b62e4123a2696ba22bce57ffb049"; + sha256 = "sha256-12BK6qvONpLLM37jGY0lDfhHN+JT5TgjQfIueJrkY9E="; +} diff --git a/manifests/forc-publish-0.68.3-nightly-2025-05-14.nix b/manifests/forc-publish-0.68.3-nightly-2025-05-14.nix new file mode 100644 index 00000000..59cb060d --- /dev/null +++ b/manifests/forc-publish-0.68.3-nightly-2025-05-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.3"; + date = "2025-05-14"; + url = "https://github.com/fuellabs/sway"; + rev = "be7a9698b1a751d91045d7492336e10912fdc376"; + sha256 = "sha256-g+EP0CEsXlV6JjehFcZiNDkdXgLEx2qQb9nVSWALJH8="; +} diff --git a/manifests/forc-publish-0.68.3.nix b/manifests/forc-publish-0.68.3.nix new file mode 100644 index 00000000..d3dfca8d --- /dev/null +++ b/manifests/forc-publish-0.68.3.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.3"; + date = "2025-05-12"; + url = "https://github.com/fuellabs/sway"; + rev = "48d95fc22eaeb700cf6cc52f17f3087a7a17693a"; + sha256 = "sha256-wJfPIkI0QSyqiiA9Mp+Vq7yfPS+v6+6rAlRlxE10trY="; +} diff --git a/manifests/forc-publish-0.68.4-nightly-2025-05-15.nix b/manifests/forc-publish-0.68.4-nightly-2025-05-15.nix new file mode 100644 index 00000000..8cf36f09 --- /dev/null +++ b/manifests/forc-publish-0.68.4-nightly-2025-05-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.4"; + date = "2025-05-15"; + url = "https://github.com/fuellabs/sway"; + rev = "39251b665b110e6cbe85f312135eaeb97738583f"; + sha256 = "sha256-5pAFmTLLHjcINfJHClHQiOAFLAVAF37GilM7P5PSBTc="; +} diff --git a/manifests/forc-publish-0.68.4-nightly-2025-05-18.nix b/manifests/forc-publish-0.68.4-nightly-2025-05-18.nix new file mode 100644 index 00000000..dc2bf21a --- /dev/null +++ b/manifests/forc-publish-0.68.4-nightly-2025-05-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.4"; + date = "2025-05-18"; + url = "https://github.com/fuellabs/sway"; + rev = "0e3d949dbf3c7346f990738dba99cdd64f079ffd"; + sha256 = "sha256-kcaCOTbiviYKwT7KWwJAENixqj5FPOukU6SwYfhAF+c="; +} diff --git a/manifests/forc-publish-0.68.4-nightly-2025-05-20.nix b/manifests/forc-publish-0.68.4-nightly-2025-05-20.nix new file mode 100644 index 00000000..2173caf6 --- /dev/null +++ b/manifests/forc-publish-0.68.4-nightly-2025-05-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.4"; + date = "2025-05-20"; + url = "https://github.com/fuellabs/sway"; + rev = "a4283762afbb19720c1976edc3952ea015506f1a"; + sha256 = "sha256-kerOcUFqrRGfWXL9tx2fQoMgvhiqTgJeEsBBOQbfTXM="; +} diff --git a/manifests/forc-publish-0.68.4.nix b/manifests/forc-publish-0.68.4.nix new file mode 100644 index 00000000..a4d85abc --- /dev/null +++ b/manifests/forc-publish-0.68.4.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.4"; + date = "2025-05-14"; + url = "https://github.com/fuellabs/sway"; + rev = "1fb61fdc42054109c54a57544b9aeb88afd3cae8"; + sha256 = "sha256-gMxxjQGCNyB2H9kAvk8BTGpu6PNkUyfFRIjmxBK4Erg="; +} diff --git a/manifests/forc-publish-0.68.5-nightly-2025-05-21.nix b/manifests/forc-publish-0.68.5-nightly-2025-05-21.nix new file mode 100644 index 00000000..4c23dd94 --- /dev/null +++ b/manifests/forc-publish-0.68.5-nightly-2025-05-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.5"; + date = "2025-05-21"; + url = "https://github.com/fuellabs/sway"; + rev = "5a95c65b61f098897d8e46f25f722f636fe127e0"; + sha256 = "sha256-NUItVZ/577fYObUjchf5/mKTppuiv9Xxax+omZ1rk7o="; +} diff --git a/manifests/forc-publish-0.68.5-nightly-2025-05-23.nix b/manifests/forc-publish-0.68.5-nightly-2025-05-23.nix new file mode 100644 index 00000000..daa6a36f --- /dev/null +++ b/manifests/forc-publish-0.68.5-nightly-2025-05-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.5"; + date = "2025-05-23"; + url = "https://github.com/fuellabs/sway"; + rev = "ee565f9145f072001b0cf10f58f838cb2566e934"; + sha256 = "sha256-juA6XgvN12UzmE8Vvfrf0icEeXBqDLEWA2cjRpqZrqU="; +} diff --git a/manifests/forc-publish-0.68.5-nightly-2025-05-24.nix b/manifests/forc-publish-0.68.5-nightly-2025-05-24.nix new file mode 100644 index 00000000..d9f357ab --- /dev/null +++ b/manifests/forc-publish-0.68.5-nightly-2025-05-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.5"; + date = "2025-05-24"; + url = "https://github.com/fuellabs/sway"; + rev = "c8625a029c588fcd8d4ffbfcee08326cfbf5b703"; + sha256 = "sha256-rvhRnyTjJ9bg+swsz0JkwfrPGgoPMvt5Q/xU4H9fuHQ="; +} diff --git a/manifests/forc-publish-0.68.5-nightly-2025-05-27.nix b/manifests/forc-publish-0.68.5-nightly-2025-05-27.nix new file mode 100644 index 00000000..a4e3817c --- /dev/null +++ b/manifests/forc-publish-0.68.5-nightly-2025-05-27.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.5"; + date = "2025-05-27"; + url = "https://github.com/fuellabs/sway"; + rev = "d972e423ac65442611cb6bec06693f0cd263b8a6"; + sha256 = "sha256-dE8cXbZzXemKYllz/Kzkss8jyor0qSBH7Hk3irEBc+M="; +} diff --git a/manifests/forc-publish-0.68.5-nightly-2025-05-28.nix b/manifests/forc-publish-0.68.5-nightly-2025-05-28.nix new file mode 100644 index 00000000..23f5da3b --- /dev/null +++ b/manifests/forc-publish-0.68.5-nightly-2025-05-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.5"; + date = "2025-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "f03d5ecdb0e63c66b5391fc907a5a272300a294a"; + sha256 = "sha256-D/xec8B/hC0136GPS+n24aLscvptlTfITYYhGOF9+4A="; +} diff --git a/manifests/forc-publish-0.68.5.nix b/manifests/forc-publish-0.68.5.nix new file mode 100644 index 00000000..f480048e --- /dev/null +++ b/manifests/forc-publish-0.68.5.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.5"; + date = "2025-05-20"; + url = "https://github.com/fuellabs/sway"; + rev = "512bbfccdb15a0045576604ba97d7943c9b7520f"; + sha256 = "sha256-BpBo/uJd52ahBSzRYXpLk3cfNV4hjH3J/ZszRfWCNM0="; +} diff --git a/manifests/forc-publish-0.68.6-nightly-2025-05-29.nix b/manifests/forc-publish-0.68.6-nightly-2025-05-29.nix new file mode 100644 index 00000000..35129344 --- /dev/null +++ b/manifests/forc-publish-0.68.6-nightly-2025-05-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.6"; + date = "2025-05-29"; + url = "https://github.com/fuellabs/sway"; + rev = "ac5280641599d4e81017e18d04e47380722074ed"; + sha256 = "sha256-ZUYUeHtlLguGmwkdKE/HFgg47zWKhudM8J2JqC44F+Q="; +} diff --git a/manifests/forc-publish-0.68.6-nightly-2025-05-30.nix b/manifests/forc-publish-0.68.6-nightly-2025-05-30.nix new file mode 100644 index 00000000..39f39752 --- /dev/null +++ b/manifests/forc-publish-0.68.6-nightly-2025-05-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.6"; + date = "2025-05-30"; + url = "https://github.com/fuellabs/sway"; + rev = "2d0021c20bf348aaf5ae7ee41ac8dd610ba48cea"; + sha256 = "sha256-SfAzslGTI61qClSQzDlTI/ymcUJDUnVIR1AvkGnKuGo="; +} diff --git a/manifests/forc-publish-0.68.6-nightly-2025-05-31.nix b/manifests/forc-publish-0.68.6-nightly-2025-05-31.nix new file mode 100644 index 00000000..6eb94b37 --- /dev/null +++ b/manifests/forc-publish-0.68.6-nightly-2025-05-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.6"; + date = "2025-05-31"; + url = "https://github.com/fuellabs/sway"; + rev = "d6804729c962513736253f377f25a323492ded93"; + sha256 = "sha256-bvH+zuVN1AgA5b21X5gkNa5TWYRIWRcZrlJ8KKtIFVU="; +} diff --git a/manifests/forc-publish-0.68.6-nightly-2025-06-03.nix b/manifests/forc-publish-0.68.6-nightly-2025-06-03.nix new file mode 100644 index 00000000..883b14e4 --- /dev/null +++ b/manifests/forc-publish-0.68.6-nightly-2025-06-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.6"; + date = "2025-06-03"; + url = "https://github.com/fuellabs/sway"; + rev = "e1e51fd81fa16872888a6f5ec25b9125181ca89a"; + sha256 = "sha256-j7GLeNt0l5vexHU78M5n9mgDZyYH3CteqMh9yQZ2oDU="; +} diff --git a/manifests/forc-publish-0.68.6-nightly-2025-06-04.nix b/manifests/forc-publish-0.68.6-nightly-2025-06-04.nix new file mode 100644 index 00000000..d2d30b39 --- /dev/null +++ b/manifests/forc-publish-0.68.6-nightly-2025-06-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.6"; + date = "2025-06-04"; + url = "https://github.com/fuellabs/sway"; + rev = "0ac62945305079d94366062f1928293cefbe9dbf"; + sha256 = "sha256-xVyqCswbWWKSjVYWiyH19eFHcRZl/Z2PYxN1G6cZEIk="; +} diff --git a/manifests/forc-publish-0.68.6.nix b/manifests/forc-publish-0.68.6.nix new file mode 100644 index 00000000..3891d9b4 --- /dev/null +++ b/manifests/forc-publish-0.68.6.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.6"; + date = "2025-05-28"; + url = "https://github.com/fuellabs/sway"; + rev = "ac5280641599d4e81017e18d04e47380722074ed"; + sha256 = "sha256-ZUYUeHtlLguGmwkdKE/HFgg47zWKhudM8J2JqC44F+Q="; +} diff --git a/manifests/forc-publish-0.68.7-nightly-2025-06-05.nix b/manifests/forc-publish-0.68.7-nightly-2025-06-05.nix new file mode 100644 index 00000000..a14df2a1 --- /dev/null +++ b/manifests/forc-publish-0.68.7-nightly-2025-06-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.7"; + date = "2025-06-05"; + url = "https://github.com/fuellabs/sway"; + rev = "58bf38ef9c737edbd677d2e0c5e5f32e8353ea00"; + sha256 = "sha256-1T2N3nbh16xaewOrHjAtnbWvMADJcsT6DToPOmGyh/M="; +} diff --git a/manifests/forc-publish-0.68.7-nightly-2025-06-06.nix b/manifests/forc-publish-0.68.7-nightly-2025-06-06.nix new file mode 100644 index 00000000..014ee576 --- /dev/null +++ b/manifests/forc-publish-0.68.7-nightly-2025-06-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.7"; + date = "2025-06-06"; + url = "https://github.com/fuellabs/sway"; + rev = "fe8a3ef37a8a138e2c6aa583ae9ebb67c876a500"; + sha256 = "sha256-XFndqF78eXbmshZCZsbpKtjEwSEVVR+saxbXdJUTe4k="; +} diff --git a/manifests/forc-publish-0.68.7-nightly-2025-06-11.nix b/manifests/forc-publish-0.68.7-nightly-2025-06-11.nix new file mode 100644 index 00000000..9ac84afa --- /dev/null +++ b/manifests/forc-publish-0.68.7-nightly-2025-06-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.7"; + date = "2025-06-11"; + url = "https://github.com/fuellabs/sway"; + rev = "14dc75275479666ddbfc3ade6a70333388a338a9"; + sha256 = "sha256-utIIwK4kzlqWDDYbV5Ord/Xdw1ptb32UJEA7f+w/3SY="; +} diff --git a/manifests/forc-publish-0.68.7-nightly-2025-06-12.nix b/manifests/forc-publish-0.68.7-nightly-2025-06-12.nix new file mode 100644 index 00000000..a4f1e8c4 --- /dev/null +++ b/manifests/forc-publish-0.68.7-nightly-2025-06-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.7"; + date = "2025-06-12"; + url = "https://github.com/fuellabs/sway"; + rev = "0e24afdc4fc4e7d8b463a9f264cc68d0e1522655"; + sha256 = "sha256-5TnV7w7vg/WYp5WEh0LszwUR0UHH0oFHPXq+iKsGuGM="; +} diff --git a/manifests/forc-publish-0.68.7-nightly-2025-06-14.nix b/manifests/forc-publish-0.68.7-nightly-2025-06-14.nix new file mode 100644 index 00000000..c4d73142 --- /dev/null +++ b/manifests/forc-publish-0.68.7-nightly-2025-06-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.7"; + date = "2025-06-14"; + url = "https://github.com/fuellabs/sway"; + rev = "e0724422c6a867b15c1ff0e3f1bf85f445bc59e4"; + sha256 = "sha256-9GtBz+XdwsKpipMJh3wHIcky7N+5wXXeGpM51K++7bc="; +} diff --git a/manifests/forc-publish-0.68.7-nightly-2025-06-18.nix b/manifests/forc-publish-0.68.7-nightly-2025-06-18.nix new file mode 100644 index 00000000..088e3ea3 --- /dev/null +++ b/manifests/forc-publish-0.68.7-nightly-2025-06-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.7"; + date = "2025-06-18"; + url = "https://github.com/fuellabs/sway"; + rev = "cd89f62ece16b3d4ff37dbbd07d68ec056f18a6e"; + sha256 = "sha256-FRhXivoZUnUDbY0XRh7/XXyz0D2KHycu/vtZeGjctTY="; +} diff --git a/manifests/forc-publish-0.68.7-nightly-2025-06-19.nix b/manifests/forc-publish-0.68.7-nightly-2025-06-19.nix new file mode 100644 index 00000000..90a56279 --- /dev/null +++ b/manifests/forc-publish-0.68.7-nightly-2025-06-19.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.7"; + date = "2025-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "b9ac2a9bdb2069b1c70637be4e2d4ae93361c73f"; + sha256 = "sha256-yxzmVuW3N7RV7L6qNDgA/2UMR3qjvwa3fCbRQLFXNnM="; +} diff --git a/manifests/forc-publish-0.68.7.nix b/manifests/forc-publish-0.68.7.nix new file mode 100644 index 00000000..ca78fcc7 --- /dev/null +++ b/manifests/forc-publish-0.68.7.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.7"; + date = "2025-06-04"; + url = "https://github.com/fuellabs/sway"; + rev = "58bf38ef9c737edbd677d2e0c5e5f32e8353ea00"; + sha256 = "sha256-1T2N3nbh16xaewOrHjAtnbWvMADJcsT6DToPOmGyh/M="; +} diff --git a/manifests/forc-publish-0.68.8-nightly-2025-06-20.nix b/manifests/forc-publish-0.68.8-nightly-2025-06-20.nix new file mode 100644 index 00000000..1232f04d --- /dev/null +++ b/manifests/forc-publish-0.68.8-nightly-2025-06-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.8"; + date = "2025-06-20"; + url = "https://github.com/fuellabs/sway"; + rev = "b2028431508c0ff64b97de4998a15d214b56e0eb"; + sha256 = "sha256-nbUx/CRvR/k/o14fduZNy+aE8g7bfiNTq6GHD2T7pJI="; +} diff --git a/manifests/forc-publish-0.68.8-nightly-2025-06-22.nix b/manifests/forc-publish-0.68.8-nightly-2025-06-22.nix new file mode 100644 index 00000000..fdf27a7b --- /dev/null +++ b/manifests/forc-publish-0.68.8-nightly-2025-06-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.8"; + date = "2025-06-22"; + url = "https://github.com/fuellabs/sway"; + rev = "83154ab6615d70479a11df50e7ea25733a8222cc"; + sha256 = "sha256-LiIlx3TwVKWegJNHnd942lPTtW9ImkPxBQULb3FCH2I="; +} diff --git a/manifests/forc-publish-0.68.8.nix b/manifests/forc-publish-0.68.8.nix new file mode 100644 index 00000000..e8bc6651 --- /dev/null +++ b/manifests/forc-publish-0.68.8.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.8"; + date = "2025-06-19"; + url = "https://github.com/fuellabs/sway"; + rev = "93ae73db745a60dfd782b340ca21804bdde54aeb"; + sha256 = "sha256-JwKPK9Dyjb/ZgVwz2+7hybLzU6PqY8KKBz8MMQeyJVQ="; +} diff --git a/manifests/forc-publish-0.68.9.nix b/manifests/forc-publish-0.68.9.nix new file mode 100644 index 00000000..14b70fce --- /dev/null +++ b/manifests/forc-publish-0.68.9.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.68.9"; + date = "2025-06-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e054b396280942cb43a40bbc0b3a9b8cc30237ed"; + sha256 = "sha256-a+P/SqwMkQ0aDbaJH9VWNSxbvDBl4v6S5yb6HMuXABY="; +} diff --git a/manifests/forc-publish-0.69.0-nightly-2025-06-24.nix b/manifests/forc-publish-0.69.0-nightly-2025-06-24.nix new file mode 100644 index 00000000..c580cd6c --- /dev/null +++ b/manifests/forc-publish-0.69.0-nightly-2025-06-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-06-24"; + url = "https://github.com/fuellabs/sway"; + rev = "5c22e3398756548f8b6dbbe32c6dbd7d6d77451c"; + sha256 = "sha256-0HIFZcZQvA/QxJNkBTQyMLSapTjFhUQAaUyRY3ZdA9M="; +} diff --git a/manifests/forc-publish-0.69.0-nightly-2025-06-28.nix b/manifests/forc-publish-0.69.0-nightly-2025-06-28.nix new file mode 100644 index 00000000..e8868d36 --- /dev/null +++ b/manifests/forc-publish-0.69.0-nightly-2025-06-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-06-28"; + url = "https://github.com/fuellabs/sway"; + rev = "c37dc92952247c1366d26702e6f72ee1dc77d046"; + sha256 = "sha256-ilGTFqb+5/rI8ya8E0K+BHR8Us3cVKuAOjOOdv9bXMU="; +} diff --git a/manifests/forc-publish-0.69.0-nightly-2025-07-01.nix b/manifests/forc-publish-0.69.0-nightly-2025-07-01.nix new file mode 100644 index 00000000..fa986190 --- /dev/null +++ b/manifests/forc-publish-0.69.0-nightly-2025-07-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-07-01"; + url = "https://github.com/fuellabs/sway"; + rev = "0cae7a31951587aa2787e622b5fb25527ed035d8"; + sha256 = "sha256-vKMgZWr3/YNVWhprR+I5ZADfIjv8H270ED2EA2g5Ljs="; +} diff --git a/manifests/forc-publish-0.69.0-nightly-2025-07-02.nix b/manifests/forc-publish-0.69.0-nightly-2025-07-02.nix new file mode 100644 index 00000000..3c90aca6 --- /dev/null +++ b/manifests/forc-publish-0.69.0-nightly-2025-07-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-07-02"; + url = "https://github.com/fuellabs/sway"; + rev = "73fb34320e61b0a01f5c8375dfaeb534871b0586"; + sha256 = "sha256-cCSC9W5FbByd263qSq/WUqHm26x50KS1tTbV2Y6htIg="; +} diff --git a/manifests/forc-publish-0.69.0-nightly-2025-07-05.nix b/manifests/forc-publish-0.69.0-nightly-2025-07-05.nix new file mode 100644 index 00000000..68aaff40 --- /dev/null +++ b/manifests/forc-publish-0.69.0-nightly-2025-07-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-07-05"; + url = "https://github.com/fuellabs/sway"; + rev = "b54fce7727d1d07c6fa38d8aeaf8db821a78c0f3"; + sha256 = "sha256-4ZHUtGtlY+SI/MXU6MpwraFr4DzmVzW+/FFmqENS/qk="; +} diff --git a/manifests/forc-publish-0.69.0-nightly-2025-07-08.nix b/manifests/forc-publish-0.69.0-nightly-2025-07-08.nix new file mode 100644 index 00000000..2e403a54 --- /dev/null +++ b/manifests/forc-publish-0.69.0-nightly-2025-07-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-07-08"; + url = "https://github.com/fuellabs/sway"; + rev = "5ca3dcab93f0064f47438927fad8899ade888e9b"; + sha256 = "sha256-EJ5+cQolHJeY5GXRFggq9i4ocHfEdYwJLCfRmDVTDcU="; +} diff --git a/manifests/forc-publish-0.69.0-nightly-2025-07-10.nix b/manifests/forc-publish-0.69.0-nightly-2025-07-10.nix new file mode 100644 index 00000000..89d53c39 --- /dev/null +++ b/manifests/forc-publish-0.69.0-nightly-2025-07-10.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-07-10"; + url = "https://github.com/fuellabs/sway"; + rev = "403a7e5780f5328c83bcf349a3f67189be158eea"; + sha256 = "sha256-dCOgyZ0fvH1q95Ibtm5MBn9MDAGfycbPpovGiYsYPo0="; +} diff --git a/manifests/forc-publish-0.69.0-nightly-2025-07-12.nix b/manifests/forc-publish-0.69.0-nightly-2025-07-12.nix new file mode 100644 index 00000000..20b74091 --- /dev/null +++ b/manifests/forc-publish-0.69.0-nightly-2025-07-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-07-12"; + url = "https://github.com/fuellabs/sway"; + rev = "8b7524666b3349d5c51f2b9d2910f1ee9e20c3ff"; + sha256 = "sha256-n0VxAxi4ZcApi8Fxs+jd6t/Z4S1WWiSgoSxo0t4HO/0="; +} diff --git a/manifests/forc-publish-0.69.0-nightly-2025-07-13.nix b/manifests/forc-publish-0.69.0-nightly-2025-07-13.nix new file mode 100644 index 00000000..ba968c39 --- /dev/null +++ b/manifests/forc-publish-0.69.0-nightly-2025-07-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-07-13"; + url = "https://github.com/fuellabs/sway"; + rev = "74092cbbcdd11d39c184097e10a34d2104c55209"; + sha256 = "sha256-WItCuXu1VzuDvH5PAkNoP96O+5Iv+ANZ/tY/Mu3bU2I="; +} diff --git a/manifests/forc-publish-0.69.0.nix b/manifests/forc-publish-0.69.0.nix new file mode 100644 index 00000000..7ab6a67a --- /dev/null +++ b/manifests/forc-publish-0.69.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.0"; + date = "2025-06-23"; + url = "https://github.com/fuellabs/sway"; + rev = "5c22e3398756548f8b6dbbe32c6dbd7d6d77451c"; + sha256 = "sha256-0HIFZcZQvA/QxJNkBTQyMLSapTjFhUQAaUyRY3ZdA9M="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-07-18.nix b/manifests/forc-publish-0.69.1-nightly-2025-07-18.nix new file mode 100644 index 00000000..8010efa2 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-07-18.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-18"; + url = "https://github.com/fuellabs/sway"; + rev = "b68a3861db866f33078b3c966eaf5b3379e716cf"; + sha256 = "sha256-k4WlC6P7kXANf2kwJg8j9W1tMpW8ds74pVB2waDELzY="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-07-19.nix b/manifests/forc-publish-0.69.1-nightly-2025-07-19.nix new file mode 100644 index 00000000..f586d4f0 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-07-19.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-19"; + url = "https://github.com/fuellabs/sway"; + rev = "03398522890e7b99511ec45343613de20b6edcd6"; + sha256 = "sha256-eV3/Qeg+8YReAM9/hCd7kcZd9Yve0dXgaNBa3Vnf8ao="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-07-21.nix b/manifests/forc-publish-0.69.1-nightly-2025-07-21.nix new file mode 100644 index 00000000..a96e4d89 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-07-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-21"; + url = "https://github.com/fuellabs/sway"; + rev = "926cb4d098fd57da46e28ddd043af2d55b094ce1"; + sha256 = "sha256-j03PiBlN+LY3a9JwaxBN2LgFVYNzb4c9omhhNclXDKo="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-07-22.nix b/manifests/forc-publish-0.69.1-nightly-2025-07-22.nix new file mode 100644 index 00000000..41788871 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-07-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-22"; + url = "https://github.com/fuellabs/sway"; + rev = "d8536d384f63c5ed4a4800b995e0b278be23c232"; + sha256 = "sha256-7KNnQuOE52zoQmJ33nnjloRXWh24r0Fg/uWHAozOaek="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-07-23.nix b/manifests/forc-publish-0.69.1-nightly-2025-07-23.nix new file mode 100644 index 00000000..fd653f52 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-07-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-23"; + url = "https://github.com/fuellabs/sway"; + rev = "a5e61488daff5db9a262173dcd0d4a78cb9e90cd"; + sha256 = "sha256-1wiGWfXw3lCWH4MijZ7xk6oQ9OnmKSd6LX3Say7T4QE="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-07-24.nix b/manifests/forc-publish-0.69.1-nightly-2025-07-24.nix new file mode 100644 index 00000000..414c2a4f --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-07-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-24"; + url = "https://github.com/fuellabs/sway"; + rev = "22d858682b2ff06f01a3d74b1646508a00d623ac"; + sha256 = "sha256-QwBRrzuNNnfT/xBsq+bF4IK6Y67WqBUQVWxRYhuEdjc="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-07-25.nix b/manifests/forc-publish-0.69.1-nightly-2025-07-25.nix new file mode 100644 index 00000000..911b2e71 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-07-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-25"; + url = "https://github.com/fuellabs/sway"; + rev = "4c9c4c29bfcda957cf58e1f6c6ed711c09334117"; + sha256 = "sha256-HEIgNOxMuTTCHcZrNH1SlBO4bNFcG6rVkKvPGXOTk/I="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-07-30.nix b/manifests/forc-publish-0.69.1-nightly-2025-07-30.nix new file mode 100644 index 00000000..4a027d18 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-07-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-30"; + url = "https://github.com/fuellabs/sway"; + rev = "32dcbaa2431bbdaa0f40e4fc8c61d51c7e765967"; + sha256 = "sha256-b12wpFXPX1wDAlpJbQpQjpycanhR0gt5mNR4nePL0ek="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-07-31.nix b/manifests/forc-publish-0.69.1-nightly-2025-07-31.nix new file mode 100644 index 00000000..9ae6cef0 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-07-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-31"; + url = "https://github.com/fuellabs/sway"; + rev = "c7ff31207a535386431afcd468c70592ec5ffa31"; + sha256 = "sha256-Pj7+7QlL/ftL3ZK7KrmA1XZb/ws1LAUhr5A+e2DdBQo="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-01.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-01.nix new file mode 100644 index 00000000..4c67b653 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-01.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-01"; + url = "https://github.com/fuellabs/sway"; + rev = "8b29cc39c52cf7a3fd7857290f9741334923d362"; + sha256 = "sha256-jtCaouazr3gN9MKoqkH3okGnqo3AXzhue4Lwdt3rK8Q="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-02.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-02.nix new file mode 100644 index 00000000..4bca898f --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-02.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-02"; + url = "https://github.com/fuellabs/sway"; + rev = "05e667dfc973f8aa26ab2081dc53ea804b7bf94e"; + sha256 = "sha256-EpdlAE9+PuaVZu29+oXFo2ir29m+62GCImj1DLzIr1E="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-06.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-06.nix new file mode 100644 index 00000000..072d5a8e --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-06.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-06"; + url = "https://github.com/fuellabs/sway"; + rev = "56e0c10a3a37055741b16d38710b4c0ab78277af"; + sha256 = "sha256-yI6H6cLYHem79lHcyVFEh0ZTPPC7Es5VFrCNK5sU98A="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-08.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-08.nix new file mode 100644 index 00000000..15c5e66d --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-08.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-08"; + url = "https://github.com/fuellabs/sway"; + rev = "fb6ea52a964dc3b6b8deaafb93ae2779d2822f10"; + sha256 = "sha256-VmIWWWoJPkMmLRLHvGt/UP2+EGdQt0d8vU+zDPk7mZ4="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-09.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-09.nix new file mode 100644 index 00000000..e4813ffd --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-09"; + url = "https://github.com/fuellabs/sway"; + rev = "95130c4172e5e4986e3eefe8f597f1d1faa025ce"; + sha256 = "sha256-NyLtu7U9wLLg2uTPVmxyLMNjhQjqnTemDtbtTeEGhS0="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-14.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-14.nix new file mode 100644 index 00000000..79e3bd31 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-14.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-14"; + url = "https://github.com/fuellabs/sway"; + rev = "5d5ca3494954451e2b8799d7165d34516efe8d52"; + sha256 = "sha256-H63IGp3TEjidtyDq1bi64486mfvT8c1TPSIpmexWYqs="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-15.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-15.nix new file mode 100644 index 00000000..b795cda0 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-15.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-15"; + url = "https://github.com/fuellabs/sway"; + rev = "fe9bbe39b9f06d455c8d5be403dd120a42d6a54c"; + sha256 = "sha256-xMinksVvWu2HgCCMoZJIBAS3yyuMxsgSVaFxJytLqtQ="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-20.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-20.nix new file mode 100644 index 00000000..83bd6c98 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-20.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-20"; + url = "https://github.com/fuellabs/sway"; + rev = "f036d4c45f730676608bd0bbe0f0e68d11af6fca"; + sha256 = "sha256-1wSq/TNkumriBbfawPUAB/30utkpox45uI/Pw3GyhvM="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-21.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-21.nix new file mode 100644 index 00000000..bc9ba354 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-21.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-21"; + url = "https://github.com/fuellabs/sway"; + rev = "f59835a78a87502d1aef8bb8be61c7a6517c0210"; + sha256 = "sha256-2R+qajT3WPKinp1liG5/Ef220Q+PH4+Ypml6TsVp44Q="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-23.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-23.nix new file mode 100644 index 00000000..8cba82f7 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-23"; + url = "https://github.com/fuellabs/sway"; + rev = "b2c965e6970e1c8079ef77f359b14957a39e5546"; + sha256 = "sha256-vDtXSpLsam7EOPHND9xa+QVCN0CcelXtVsx98DnDCDg="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-24.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-24.nix new file mode 100644 index 00000000..6ff7d01a --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-24.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-24"; + url = "https://github.com/fuellabs/sway"; + rev = "be5871da225d79dc2f3325788033ddb49e42928f"; + sha256 = "sha256-V1pUYHa1dVmGURn96EcU3J9I8lPHL5TQkZhWNsxazhU="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-25.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-25.nix new file mode 100644 index 00000000..96f36d9b --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-25.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-25"; + url = "https://github.com/fuellabs/sway"; + rev = "a347631478939613690c303d2f636506e4c44b0f"; + sha256 = "sha256-CVIBdk6+o6CY95cnVApwJ3zGJxx7mWpEzZFNoUU5vL8="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-27.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-27.nix new file mode 100644 index 00000000..c8f8645e --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-27.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-27"; + url = "https://github.com/fuellabs/sway"; + rev = "8be2dae76b6c6c7fa1dc6ba7cc58e55c00abb573"; + sha256 = "sha256-SyHl1eMG9fcxs7xfLwLrk4MbyuROeyr12Xh2rMfhr2E="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-28.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-28.nix new file mode 100644 index 00000000..e85cce80 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-28.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-28"; + url = "https://github.com/fuellabs/sway"; + rev = "8cb7c57344d230258222110e22fef54e8bdef165"; + sha256 = "sha256-VA51UnSCNxSJAvcXJPV5hMLr7jPi0d9hHz/rL/YgZTc="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-29.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-29.nix new file mode 100644 index 00000000..c51b7cd5 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-29.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-29"; + url = "https://github.com/fuellabs/sway"; + rev = "d49cf8e92c9b5512c471571d135dc546fc456ac9"; + sha256 = "sha256-xOEmt3raPrVXhQvMqbqmmudbSxLTC0r7ne5GMjQJkJE="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-30.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-30.nix new file mode 100644 index 00000000..21b5915e --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-30.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-30"; + url = "https://github.com/fuellabs/sway"; + rev = "84e575ab5266b1103457bbca61b047a967c3d116"; + sha256 = "sha256-isNB7/VsDsBCXnyhWEgyOuHHMydLd3fjUD0sqV+7xuE="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-08-31.nix b/manifests/forc-publish-0.69.1-nightly-2025-08-31.nix new file mode 100644 index 00000000..8ac0d3c5 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-08-31.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-08-31"; + url = "https://github.com/fuellabs/sway"; + rev = "0aef56aa59abf7669d1b159a645b848b2721ee11"; + sha256 = "sha256-39FRxaXFWIsvVjwid77rjIOAMXA16WDuWnc2gT6kYZU="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-03.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-03.nix new file mode 100644 index 00000000..81c50a94 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-03.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-03"; + url = "https://github.com/fuellabs/sway"; + rev = "1e04b80c3a25e475023b978a5987686de962eb49"; + sha256 = "sha256-AMmx1suCuWuywmHiZahhBQM9vqnCvsUSOTIhgRPVrF8="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-04.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-04.nix new file mode 100644 index 00000000..fefb2c44 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-04.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-04"; + url = "https://github.com/fuellabs/sway"; + rev = "c58ddbc57f716dcbbc9debed941b0c378ee800bc"; + sha256 = "sha256-TiufOKOHYgVJMsk9yYJSDNI5UH4pK2qSZQQYCWlL9tU="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-05.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-05.nix new file mode 100644 index 00000000..f3013dd4 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-05.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-05"; + url = "https://github.com/fuellabs/sway"; + rev = "1f9880f60d288f36b623309b601da404792acbda"; + sha256 = "sha256-oZfoMFSTBuQji+d4OKqo07/f2cGKsJ7ZqP7y9cTwhQc="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-07.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-07.nix new file mode 100644 index 00000000..c7202cfc --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-07.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-07"; + url = "https://github.com/fuellabs/sway"; + rev = "c2696d6c7b359ae014edf96b29e623f4ddcac0ee"; + sha256 = "sha256-MCV+t/k/JHE4vvOqhRzpiMap/pdfP57tZw7WzA8J+l4="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-09.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-09.nix new file mode 100644 index 00000000..dcd0ab84 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-09.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-09"; + url = "https://github.com/fuellabs/sway"; + rev = "6981d3dc884e8b2033509d40e4e9c9b888b82936"; + sha256 = "sha256-xaA/J8nptOBPkVtw8Jqk24z0KMA1/1TA+b7b9p3ZNco="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-11.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-11.nix new file mode 100644 index 00000000..dd834d02 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-11.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-11"; + url = "https://github.com/fuellabs/sway"; + rev = "b552ba17c8a1b0f9d46fdaeb808879060f8ba1f4"; + sha256 = "sha256-c+gs8HsPM2LGcu+I0PD7Sqys/9bbaGDNP59Kqx32PLI="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-12.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-12.nix new file mode 100644 index 00000000..77f66c9c --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-12.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-12"; + url = "https://github.com/fuellabs/sway"; + rev = "608fc526adea252edf37c8512e3151f555b69aa7"; + sha256 = "sha256-mNWc0PgsO5V0kyi5hPCNzZhmhYAsdrEVMJbZZ1y+cZs="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-13.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-13.nix new file mode 100644 index 00000000..b8450d63 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-13.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-13"; + url = "https://github.com/fuellabs/sway"; + rev = "4f1af4316a019aca20fdbe4fca862b2006457cb3"; + sha256 = "sha256-FTVhC6xAxhaWh5qtuzHG6P5U6Oy8HyEjQZroL8gk6vk="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-17.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-17.nix new file mode 100644 index 00000000..11dbdc9f --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-17.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-17"; + url = "https://github.com/fuellabs/sway"; + rev = "6553dce5a2765362cdfe772d989240198c87f5dd"; + sha256 = "sha256-8zEV6A6+hlvzqVU8AqLr7G3R2rEs1vw9gkpcj1WfhNw="; +} diff --git a/manifests/forc-publish-0.69.1-nightly-2025-09-22.nix b/manifests/forc-publish-0.69.1-nightly-2025-09-22.nix new file mode 100644 index 00000000..c90b4864 --- /dev/null +++ b/manifests/forc-publish-0.69.1-nightly-2025-09-22.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-09-22"; + url = "https://github.com/fuellabs/sway"; + rev = "e4672e3e1794e31eb53cf83c1821890b8c876a16"; + sha256 = "sha256-zevCtBXQmNriCMBNmpagzVnxD+9S7aQA4Qa+sHSLnw4="; +} diff --git a/manifests/forc-publish-0.69.1.nix b/manifests/forc-publish-0.69.1.nix new file mode 100644 index 00000000..eacea154 --- /dev/null +++ b/manifests/forc-publish-0.69.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.1"; + date = "2025-07-17"; + url = "https://github.com/fuellabs/sway"; + rev = "b68a3861db866f33078b3c966eaf5b3379e716cf"; + sha256 = "sha256-k4WlC6P7kXANf2kwJg8j9W1tMpW8ds74pVB2waDELzY="; +} diff --git a/manifests/forc-publish-0.69.2-nightly-2025-09-23.nix b/manifests/forc-publish-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..2a2ffe1b --- /dev/null +++ b/manifests/forc-publish-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-publish-0.69.2.nix b/manifests/forc-publish-0.69.2.nix new file mode 100644 index 00000000..2a2ffe1b --- /dev/null +++ b/manifests/forc-publish-0.69.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/manifests/forc-publish-0.7.0.nix b/manifests/forc-publish-0.7.0.nix new file mode 100644 index 00000000..d00ab4a8 --- /dev/null +++ b/manifests/forc-publish-0.7.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.7.0"; + date = "2022-03-22"; + url = "https://github.com/fuellabs/sway"; + rev = "7dd186041fbd2d4040b9a374fedc9a0cbed9eecb"; + sha256 = "sha256-B37FgsnDop9Vyn5t7aSn2RceGG3pdLxrHUJHZ2s53d8="; +} diff --git a/manifests/forc-publish-0.8.0.nix b/manifests/forc-publish-0.8.0.nix new file mode 100644 index 00000000..6cbc194b --- /dev/null +++ b/manifests/forc-publish-0.8.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.8.0"; + date = "2022-03-25"; + url = "https://github.com/fuellabs/sway"; + rev = "04d26d6924788875fb01fa4fe58fe969849dcfc5"; + sha256 = "sha256-MTQlnuP9WVHL/rNHsMdmYqvIgHL5IJmIjUF9WqM55M0="; +} diff --git a/manifests/forc-publish-0.9.0.nix b/manifests/forc-publish-0.9.0.nix new file mode 100644 index 00000000..9921dc87 --- /dev/null +++ b/manifests/forc-publish-0.9.0.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.9.0"; + date = "2022-03-28"; + url = "https://github.com/fuellabs/sway"; + rev = "fdebe28e2803ef32238e6b39693748b6bdf6f34e"; + sha256 = "sha256-dzEkvJ+nP6+Xzp+nVz+VKy0RmfN/UkX/JlP/0cXqaY0="; +} diff --git a/manifests/forc-publish-0.9.1.nix b/manifests/forc-publish-0.9.1.nix new file mode 100644 index 00000000..9e787895 --- /dev/null +++ b/manifests/forc-publish-0.9.1.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.9.1"; + date = "2022-03-29"; + url = "https://github.com/fuellabs/sway"; + rev = "72aa51d6da3d49b1bad2e6d6fffe6d4b3e331380"; + sha256 = "sha256-Mu3niggbgovHWhm6GtU/hhWqANm5YWFvdsrDExUPKYc="; +} diff --git a/manifests/forc-publish-0.9.2.nix b/manifests/forc-publish-0.9.2.nix new file mode 100644 index 00000000..9aa210f5 --- /dev/null +++ b/manifests/forc-publish-0.9.2.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-publish"; + version = "0.9.2"; + date = "2022-03-30"; + url = "https://github.com/fuellabs/sway"; + rev = "4905aa0b2b6cb7178d6229e7bed94c241a418c26"; + sha256 = "sha256-C+1vF48WryCdT2X09E8RwcY8LRHxGX3ncRkc2MtNnY4="; +} diff --git a/manifests/forc-tx-0.69.2-nightly-2025-09-23.nix b/manifests/forc-tx-0.69.2-nightly-2025-09-23.nix new file mode 100644 index 00000000..326a011d --- /dev/null +++ b/manifests/forc-tx-0.69.2-nightly-2025-09-23.nix @@ -0,0 +1,8 @@ +{ + pname = "forc-tx"; + version = "0.69.2"; + date = "2025-09-23"; + url = "https://github.com/fuellabs/sway"; + rev = "e8b4fda1fd645155416eca01d6bfd5c3fc46ff71"; + sha256 = "sha256-Tp0TYFMpzkMeY7tnbXBeKtTwgpbtHWtcwAKjfS2REhw="; +} diff --git a/patches.nix b/patches.nix index 5af09d81..4a3cb455 100644 --- a/patches.nix +++ b/patches.nix @@ -10,6 +10,10 @@ "forc-fmt" "forc-lsp" "forc-tx" + "forc-call" + "forc-migrate" + "forc-node" + "forc-publish" ]; in [ # By default, most packages have their `Cargo.lock` file in the repo root. diff --git a/script/refresh-manifests.sh b/script/refresh-manifests.sh index e98973dd..e083385f 100755 --- a/script/refresh-manifests.sh +++ b/script/refresh-manifests.sh @@ -58,6 +58,22 @@ declare -A pkg_forc_tx=( [name]="forc-tx" [repo]="${fuel_repos[sway]}" ) +declare -A pkg_forc_call=( + [name]="forc-call" + [repo]="${fuel_repos[sway]}" +) +declare -A pkg_forc_migrate=( + [name]="forc-migrate" + [repo]="${fuel_repos[sway]}" +) +declare -A pkg_forc_node=( + [name]="forc-node" + [repo]="${fuel_repos[sway]}" +) +declare -A pkg_forc_publish=( + [name]="forc-publish" + [repo]="${fuel_repos[sway]}" +) declare -A pkg_forc_wallet=( [name]="forc-wallet" [repo]="${fuel_repos[forc-wallet]}" @@ -226,6 +242,10 @@ refresh pkg_forc_doc refresh pkg_forc_fmt refresh pkg_forc_lsp refresh pkg_forc_tx +refresh pkg_forc_call +refresh pkg_forc_migrate +refresh pkg_forc_node +refresh pkg_forc_publish refresh pkg_forc_wallet refresh pkg_fuel_core refresh pkg_fuel_core_client