Remove misleading Tree.t.hash field

This was the OCaml structural hash (Int.to_string of Tree.hash), not the git object SHA. It was never read anywhere, so remove it entirely.

Commit
0ac7be548a2177b8abc7a44e038e9949ce758ba7
Author
Marius Peter <dev@marius-peter.com>
Author date
Committer
Marius Peter <dev@marius-peter.com>
Committer date
Changed files
lib/resolvers.ml
index 2b11202a..db56ab39 100644..100644
@@ -262,12 +262,11 @@
262 262 end
263 263
264 264 module Tree = struct
265 Removed: type t = { hash : string; entries : Entry.t list }
265 Added: type t = { entries : Entry.t list }
266 266
267 267 let to_t tree =
268 Removed: let hash = Store.Value.Tree.hash tree |> Int.to_string in
269 268 let entries = Store.Value.Tree.to_list tree |> List.map Entry.to_t in
270 Removed: { hash; entries }
269 Added: { entries }
271 270
272 271 let of_id repo id =
273 272 let* store = store repo in
ogit.opam
index 42711d82..750741be 100644..100644
@@ -14,6 +14,7 @@
14 14 "dream-html" {>= "3.11.2"}
15 15 "git" {>= "3.18.0"}
16 16 "git-unix" {>= "3.18.0"}
17 Added: "crunch" {>= "4.0.0"}
17 18 "ocamlformat" {with-dev-setup & = "0.29.0"}
18 19 "toml" {>= "7.1.0"}
19 20 "odoc" {with-doc}