@@ -38,6 +38,8 @@ pub(crate) mod root {
38
38
pub const GITOXIDE : sections:: Gitoxide = sections:: Gitoxide ;
39
39
/// The `http` section.
40
40
pub const HTTP : sections:: Http = sections:: Http ;
41
+ /// The `index` section.
42
+ pub const INDEX : sections:: Index = sections:: Index ;
41
43
/// The `init` section.
42
44
pub const INIT : sections:: Init = sections:: Init ;
43
45
/// The `pack` section.
@@ -69,6 +71,7 @@ pub(crate) mod root {
69
71
& Self :: EXTENSIONS ,
70
72
& Self :: GITOXIDE ,
71
73
& Self :: HTTP ,
74
+ & Self :: INDEX ,
72
75
& Self :: INIT ,
73
76
& Self :: PACK ,
74
77
& Self :: PROTOCOL ,
@@ -84,9 +87,9 @@ pub(crate) mod root {
84
87
85
88
mod sections;
86
89
pub use sections:: {
87
- branch, checkout, core, credential, diff, extensions, gitoxide, http, protocol, remote, ssh, Author , Branch ,
88
- Checkout , Clone , Committer , Core , Credential , Diff , Extensions , Gitoxide , Http , Init , Pack , Protocol , Remote , Safe ,
89
- Ssh , Url , User ,
90
+ branch, checkout, core, credential, diff, extensions, gitoxide, http, index , protocol, remote, ssh, Author , Branch ,
91
+ Checkout , Clone , Committer , Core , Credential , Diff , Extensions , Gitoxide , Http , Index , Init , Pack , Protocol ,
92
+ Remote , Safe , Ssh , Url , User ,
90
93
} ;
91
94
92
95
/// Generic value implementations for static instantiation.
0 commit comments