We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b98c738 commit ba42d64Copy full SHA for ba42d64
libgit2-sys/lib.rs
@@ -198,6 +198,8 @@ git_enum! {
198
GIT_EINDEXDIRTY = -34,
199
GIT_EAPPLYFAIL = -35,
200
GIT_EOWNER = -36,
201
+ GIT_TIMEOUT = -37,
202
+ GIT_EUNCHANGED = -38,
203
}
204
205
@@ -862,10 +864,11 @@ pub struct git_index_time {
862
864
pub struct git_config_entry {
863
865
pub name: *const c_char,
866
pub value: *const c_char,
867
+ pub backend_type: *const c_char,
868
+ pub origin_path: *const c_char,
869
pub include_depth: c_uint,
870
pub level: git_config_level_t,
871
pub free: Option<extern "C" fn(*mut git_config_entry)>,
- pub payload: *mut c_void,
872
873
874
git_enum! {
0 commit comments