atproto libraries implementation in ocaml
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Merkle Search Tree for AT Protocol" 4description: 5 "Content-addressed key-value storage for AT Protocol repositories" 6maintainer: ["Guillermo Diaz-Romero <guillermo@bluesky-dev.io>"] 7authors: ["Guillermo Diaz-Romero <guillermo@bluesky-dev.io>"] 8license: "MIT" 9tags: ["atproto" "mst" "merkle" "repository"] 10homepage: "https://github.com/gdiazlo/atproto" 11doc: "https://github.com/gdiazlo/atproto" 12bug-reports: "https://github.com/gdiazlo/atproto/issues" 13depends: [ 14 "dune" {>= "3.20"} 15 "ocaml" {>= "5.1"} 16 "atproto-ipld" {= version} 17 "digestif" {>= "1.0"} 18 "alcotest" {with-test} 19 "yojson" {with-test} 20 "odoc" {with-doc} 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://github.com/gdiazlo/atproto.git" 37x-maintenance-intent: ["(latest)"]