atproto libraries implementation in ocaml
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Cryptographic operations for AT Protocol"
4description:
5 "P-256 and K-256 elliptic curve support with low-S normalization, did:key encoding"
6maintainer: ["Guillermo Diaz-Romero <guillermo@bluesky-dev.io>"]
7authors: ["Guillermo Diaz-Romero <guillermo@bluesky-dev.io>"]
8license: "MIT"
9tags: ["atproto" "crypto" "ecdsa"]
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-multibase" {= version}
17 "mirage-crypto-ec" {>= "2.0"}
18 "mirage-crypto-rng" {>= "2.0"}
19 "digestif" {>= "1.0"}
20 "zarith" {>= "1.12"}
21 "alcotest" {with-test}
22 "yojson" {with-test}
23 "odoc" {with-doc}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://github.com/gdiazlo/atproto.git"
40x-maintenance-intent: ["(latest)"]