Update `git2` to 0.19.0
This commit is contained in:
parent
eb432b9bc1
commit
f71da0ee95
|
|
@ -27,7 +27,7 @@ serde_json = { version = "1.0" }
|
|||
thiserror = { version = "1.0" }
|
||||
|
||||
[dependencies.git2]
|
||||
version = "0.18.1"
|
||||
version = "0.19.0"
|
||||
default-features = false
|
||||
features = ["vendored-libgit2"]
|
||||
|
||||
|
|
|
|||
|
|
@ -197,7 +197,7 @@ impl change::Storage for git2::Repository {
|
|||
return Err(error::Load::TooManyResources(id));
|
||||
};
|
||||
|
||||
let tree = self.find_tree(commit.tree())?;
|
||||
let tree = self.find_tree(*commit.tree())?;
|
||||
let manifest = load_manifest(self, &tree)?;
|
||||
let contents = load_contents(self, &tree)?;
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ unicode-segmentation = { version = "1.7.1" }
|
|||
zeroize = { version = "1.1" }
|
||||
|
||||
[dependencies.git2]
|
||||
version = "0.18.1"
|
||||
version = "0.19.0"
|
||||
default-features = false
|
||||
features = ["vendored-libgit2"]
|
||||
optional = true
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ version = "2.1.0"
|
|||
optional = true
|
||||
|
||||
[dependencies.git2]
|
||||
version = "0.18.1"
|
||||
version = "0.19.0"
|
||||
default-features = false
|
||||
features = ["vendored-libgit2"]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue