diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2023-09-01 00:00:00 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2023-09-13 09:24:49 +0000 |
| commit | 6423baebd92e45c9be85157c443dff42e65d8d14 (patch) | |
| tree | 6548edfd80d0cd9d1267378ebe816ec95e394137 /flake.lock | |
| parent | 5c5feaa732363e32e2a980a887fa42b4394b1a5e (diff) | |
refactor: rebuild app skeleton
Create skeleton for a complete rebuild of the prototype as a production
ready product.
Includes design patterns for:
- dependency injection
- unit testing with dependency mocking
- integration testing
- error handling
- config storage
BREAKING-CHANGE: ground-up redesign with incompatible protocol standards
Diffstat (limited to 'flake.lock')
| -rw-r--r-- | flake.lock | 130 |
1 files changed, 130 insertions, 0 deletions
diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..29425ed --- /dev/null +++ b/flake.lock | |||
| @@ -0,0 +1,130 @@ | |||
| 1 | { | ||
| 2 | "nodes": { | ||
| 3 | "flake-utils": { | ||
| 4 | "inputs": { | ||
| 5 | "systems": "systems" | ||
| 6 | }, | ||
| 7 | "locked": { | ||
| 8 | "lastModified": 1692799911, | ||
| 9 | "narHash": "sha256-3eihraek4qL744EvQXsK1Ha6C3CR7nnT8X2qWap4RNk=", | ||
| 10 | "owner": "numtide", | ||
| 11 | "repo": "flake-utils", | ||
| 12 | "rev": "f9e7cf818399d17d347f847525c5a5a8032e4e44", | ||
| 13 | "type": "github" | ||
| 14 | }, | ||
| 15 | "original": { | ||
| 16 | "owner": "numtide", | ||
| 17 | "repo": "flake-utils", | ||
| 18 | "type": "github" | ||
| 19 | } | ||
| 20 | }, | ||
| 21 | "flake-utils_2": { | ||
| 22 | "inputs": { | ||
| 23 | "systems": "systems_2" | ||
| 24 | }, | ||
| 25 | "locked": { | ||
| 26 | "lastModified": 1681202837, | ||
| 27 | "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=", | ||
| 28 | "owner": "numtide", | ||
| 29 | "repo": "flake-utils", | ||
| 30 | "rev": "cfacdce06f30d2b68473a46042957675eebb3401", | ||
| 31 | "type": "github" | ||
| 32 | }, | ||
| 33 | "original": { | ||
| 34 | "owner": "numtide", | ||
| 35 | "repo": "flake-utils", | ||
| 36 | "type": "github" | ||
| 37 | } | ||
| 38 | }, | ||
| 39 | "nixpkgs": { | ||
| 40 | "locked": { | ||
| 41 | "lastModified": 1694183432, | ||
| 42 | "narHash": "sha256-YyPGNapgZNNj51ylQMw9lAgvxtM2ai1HZVUu3GS8Fng=", | ||
| 43 | "owner": "NixOS", | ||
| 44 | "repo": "nixpkgs", | ||
| 45 | "rev": "db9208ab987cdeeedf78ad9b4cf3c55f5ebd269b", | ||
| 46 | "type": "github" | ||
| 47 | }, | ||
| 48 | "original": { | ||
| 49 | "owner": "NixOS", | ||
| 50 | "ref": "nixos-unstable", | ||
| 51 | "repo": "nixpkgs", | ||
| 52 | "type": "github" | ||
| 53 | } | ||
| 54 | }, | ||
| 55 | "nixpkgs_2": { | ||
| 56 | "locked": { | ||
| 57 | "lastModified": 1681358109, | ||
| 58 | "narHash": "sha256-eKyxW4OohHQx9Urxi7TQlFBTDWII+F+x2hklDOQPB50=", | ||
| 59 | "owner": "NixOS", | ||
| 60 | "repo": "nixpkgs", | ||
| 61 | "rev": "96ba1c52e54e74c3197f4d43026b3f3d92e83ff9", | ||
| 62 | "type": "github" | ||
| 63 | }, | ||
| 64 | "original": { | ||
| 65 | "owner": "NixOS", | ||
| 66 | "ref": "nixpkgs-unstable", | ||
| 67 | "repo": "nixpkgs", | ||
| 68 | "type": "github" | ||
| 69 | } | ||
| 70 | }, | ||
| 71 | "root": { | ||
| 72 | "inputs": { | ||
| 73 | "flake-utils": "flake-utils", | ||
| 74 | "nixpkgs": "nixpkgs", | ||
| 75 | "rust-overlay": "rust-overlay" | ||
| 76 | } | ||
| 77 | }, | ||
| 78 | "rust-overlay": { | ||
| 79 | "inputs": { | ||
| 80 | "flake-utils": "flake-utils_2", | ||
| 81 | "nixpkgs": "nixpkgs_2" | ||
| 82 | }, | ||
| 83 | "locked": { | ||
| 84 | "lastModified": 1694398298, | ||
| 85 | "narHash": "sha256-Hi904+2V5DJhFdEy9DcARSRrGJOlYSILHUC6CgTtuZU=", | ||
| 86 | "owner": "oxalica", | ||
| 87 | "repo": "rust-overlay", | ||
| 88 | "rev": "6c520f2e31f4bebeb29cc4563543de7187013575", | ||
| 89 | "type": "github" | ||
| 90 | }, | ||
| 91 | "original": { | ||
| 92 | "owner": "oxalica", | ||
| 93 | "repo": "rust-overlay", | ||
| 94 | "type": "github" | ||
| 95 | } | ||
| 96 | }, | ||
| 97 | "systems": { | ||
| 98 | "locked": { | ||
| 99 | "lastModified": 1681028828, | ||
| 100 | "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", | ||
| 101 | "owner": "nix-systems", | ||
| 102 | "repo": "default", | ||
| 103 | "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", | ||
| 104 | "type": "github" | ||
| 105 | }, | ||
| 106 | "original": { | ||
| 107 | "owner": "nix-systems", | ||
| 108 | "repo": "default", | ||
| 109 | "type": "github" | ||
| 110 | } | ||
| 111 | }, | ||
| 112 | "systems_2": { | ||
| 113 | "locked": { | ||
| 114 | "lastModified": 1681028828, | ||
| 115 | "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", | ||
| 116 | "owner": "nix-systems", | ||
| 117 | "repo": "default", | ||
| 118 | "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", | ||
| 119 | "type": "github" | ||
| 120 | }, | ||
| 121 | "original": { | ||
| 122 | "owner": "nix-systems", | ||
| 123 | "repo": "default", | ||
| 124 | "type": "github" | ||
| 125 | } | ||
| 126 | } | ||
| 127 | }, | ||
| 128 | "root": "root", | ||
| 129 | "version": 7 | ||
| 130 | } | ||