File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,13 @@ use thiserror::Error;
12
12
#[ derive( serde:: Deserialize , Debug , Clone ) ]
13
13
#[ serde( rename_all = "camelCase" , deny_unknown_fields) ]
14
14
pub struct ManifestEntry {
15
- #[ allow ( dead_code) ]
15
+ #[ expect ( dead_code) ]
16
16
name : Option < String > ,
17
17
18
- #[ allow( dead_code) ]
18
+ #[ expect( dead_code) ]
19
+ names : Option < Vec < String > > ,
20
+
21
+ #[ expect( dead_code) ]
19
22
src : Option < Utf8PathBuf > ,
20
23
21
24
file : Utf8PathBuf ,
@@ -24,15 +27,15 @@ pub struct ManifestEntry {
24
27
25
28
assets : Option < Vec < Utf8PathBuf > > ,
26
29
27
- #[ allow ( dead_code) ]
30
+ #[ expect ( dead_code) ]
28
31
is_entry : Option < bool > ,
29
32
30
- #[ allow ( dead_code) ]
33
+ #[ expect ( dead_code) ]
31
34
is_dynamic_entry : Option < bool > ,
32
35
33
36
imports : Option < Vec < Utf8PathBuf > > ,
34
37
35
- #[ allow ( dead_code) ]
38
+ #[ expect ( dead_code) ]
36
39
dynamic_imports : Option < Vec < Utf8PathBuf > > ,
37
40
38
41
integrity : Option < String > ,
You can’t perform that action at this time.
0 commit comments