+1
-1
atproto-api.opam
+1
-1
atproto-api.opam
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
-
version: "0.1.0"
3
+
version: "0.1.1"
4
4
synopsis: "High-level API client for AT Protocol"
5
5
description:
6
6
"User-friendly API client for AT Protocol with session management, posting, and social actions"
+2
-1
atproto-crypto.opam
+2
-1
atproto-crypto.opam
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
-
version: "0.1.0"
3
+
version: "0.1.1"
4
4
synopsis: "Cryptographic operations for AT Protocol"
5
5
description:
6
6
"P-256 and K-256 elliptic curve support with low-S normalization, did:key encoding"
···
15
15
"dune" {>= "3.20"}
16
16
"ocaml" {>= "5.4"}
17
17
"atproto-multibase" {= version}
18
+
"atproto-json" {= version}
18
19
"mirage-crypto-ec" {>= "2.0.2"}
19
20
"mirage-crypto-rng" {>= "2.0.2"}
20
21
"digestif" {>= "1.0"}
+1
-1
atproto-effects.opam
+1
-1
atproto-effects.opam
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
-
version: "0.1.0"
3
+
version: "0.1.1"
4
4
synopsis: "Effects-based I/O abstraction for AT Protocol"
5
5
description:
6
6
"Unified effect types for HTTP, DNS, WebSocket, time, and random operations. Allows libraries to be runtime-agnostic."
+1
-1
atproto-identity.opam
+1
-1
atproto-identity.opam
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
-
version: "0.1.0"
3
+
version: "0.1.1"
4
4
synopsis: "DID and Handle resolution for AT Protocol"
5
5
description:
6
6
"DID and Handle resolution including did:plc, did:web, and DNS/HTTPS handle resolution"
+2
-1
atproto-ipld.opam
+2
-1
atproto-ipld.opam
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
-
version: "0.1.0"
3
+
version: "0.1.1"
4
4
synopsis: "IPLD support for AT Protocol"
5
5
description:
6
6
"Content Identifiers (CID) and DAG-CBOR encoding for AT Protocol"
···
15
15
"dune" {>= "3.20"}
16
16
"ocaml" {>= "5.4"}
17
17
"atproto-multibase" {= version}
18
+
"atproto-json" {= version}
18
19
"digestif" {>= "1.0"}
19
20
"zarith" {>= "1.12"}
20
21
"cbor" {>= "0.5"}
+1
-1
atproto-json.opam
+1
-1
atproto-json.opam
+1
-1
atproto-lexicon.opam
+1
-1
atproto-lexicon.opam
+1
-1
atproto-mst.opam
+1
-1
atproto-mst.opam
+1
-1
atproto-multibase.opam
+1
-1
atproto-multibase.opam
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
-
version: "0.1.0"
3
+
version: "0.1.1"
4
4
synopsis: "Base encoding utilities for AT Protocol"
5
5
description:
6
6
"Multibase encoding/decoding including base32-sortable for TIDs and base58btc for did:key"
+1
-1
atproto-repo.opam
+1
-1
atproto-repo.opam
+1
-1
atproto-sync.opam
+1
-1
atproto-sync.opam
+1
-1
atproto-syntax.opam
+1
-1
atproto-syntax.opam
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
-
version: "0.1.0"
3
+
version: "0.1.1"
4
4
synopsis: "Syntax validation for AT Protocol identifiers"
5
5
description:
6
6
"Parser-based validation for handles, DIDs, NSIDs, TIDs, AT-URIs, and other AT Protocol syntax"
+1
-1
atproto-xrpc.opam
+1
-1
atproto-xrpc.opam
+1
-1
atproto.opam
+1
-1
atproto.opam
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
-
version: "0.1.0"
3
+
version: "0.1.1"
4
4
synopsis: "AT Protocol implementation in OCaml"
5
5
description:
6
6
"Complete AT Protocol implementation including syntax validation, cryptography, IPLD, and identity resolution"
+3
-1
dune-project
+3
-1
dune-project
···
2
2
3
3
(name atproto)
4
4
5
-
(version 0.1.0)
5
+
(version 0.1.1)
6
6
7
7
(generate_opam_files true)
8
8
···
46
46
(depends
47
47
(ocaml (>= 5.4))
48
48
(atproto-multibase (= :version))
49
+
(atproto-json (= :version))
49
50
(mirage-crypto-ec (>= 2.0.2))
50
51
(mirage-crypto-rng (>= 2.0.2))
51
52
(digestif (>= 1.0))
···
61
62
(depends
62
63
(ocaml (>= 5.4))
63
64
(atproto-multibase (= :version))
65
+
(atproto-json (= :version))
64
66
(digestif (>= 1.0))
65
67
(zarith (>= 1.12))
66
68
(cbor (>= 0.5))