File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " flake-checker"
3- version = " 0.2.4 "
3+ version = " 0.2.5 "
44edition = " 2021"
55
66[workspace ]
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ pub struct RepoLocked {
269269 pub last_modified : i64 ,
270270 /// The NAR hash of the input.
271271 #[ serde( alias = "narHash" ) ]
272- pub nar_hash : String ,
272+ pub nar_hash : Option < String > ,
273273 /// The repository owner.
274274 pub owner : String ,
275275 /// The repository.
@@ -340,7 +340,7 @@ pub struct PathLocked {
340340 pub last_modified : i64 ,
341341 /// The NAR hash of the input.
342342 #[ serde( alias = "narHash" ) ]
343- pub nar_hash : String ,
343+ pub nar_hash : Option < String > ,
344344 /// The relative filesystem path for the input.
345345 pub path : PathBuf ,
346346 /// The type of the node (always `"path"`).
@@ -380,7 +380,7 @@ pub struct TarballLocked {
380380 pub last_modified : Option < i64 > ,
381381 /// The NAR hash of the input.
382382 #[ serde( alias = "narHash" ) ]
383- pub nar_hash : String ,
383+ pub nar_hash : Option < String > ,
384384 /// The type of the node (always `"tarball"`).
385385 #[ serde( alias = "type" ) ]
386386 pub node_type : String ,
You can’t perform that action at this time.
0 commit comments