File tree Expand file tree Collapse file tree 4 files changed +169
-0
lines changed
bitcoin-cohttp-async/bitcoin-cohttp-async.3.0
bitcoin-cohttp-lwt/bitcoin-cohttp-lwt.3.0
bitcoin-ocurl/bitcoin-ocurl.3.0 Expand file tree Collapse file tree 4 files changed +169
-0
lines changed Original file line number Diff line number Diff line change 1+ # This file is generated by dune, edit dune-project instead
2+ opam-version: "2.0"
3+ synopsis: "Bitcoin Client API cohttp-async interface"
4+ description: "This is the cohttp-async I/O interface to the bitcoin client"
5+ maintainer: [
6+ "Dario Teixeira <
[email protected] >"
7+ "Michael Bacarella <
[email protected] >"
8+ ]
9+ authors: ["Dario Teixeira <
[email protected] >"]
10+ license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
11+ homepage: "https://github.com/darioteixeira/ocaml-bitcoin"
12+ bug-reports: "https://github.com/darioteixeira/ocaml-bitcoin/issues"
13+ depends: [
14+ "dune" {>= "2.8"}
15+ "bitcoin" {= version}
16+ "cohttp-async" {>= "5.0.0"}
17+ "odoc" {with-doc}
18+ ]
19+ build: [
20+ ["dune" "subst"] {dev}
21+ [
22+ "dune"
23+ "build"
24+ "-p"
25+ name
26+ "-j"
27+ jobs
28+ "@install"
29+ # "@runtest" {with-test}
30+ "@doc" {with-doc}
31+ ]
32+ ]
33+ dev-repo: "git+https://github.com/darioteixeira/ocaml-bitcoin.git"
34+ url {
35+ src:
36+ "https://github.com/darioteixeira/ocaml-bitcoin/archive/refs/tags/v3.0.tar.gz"
37+ checksum: [
38+ "md5=5e9980ab580017ba356aa6cb972787fe"
39+ "sha512=d4cb6b83ddfeb4221b6c587a83752423d01e1695aa06c588b6cfc6f8c2288c2bf8d32485fa902aabf0c72310b5c4acfa4e66ef084febeca3f602668e39e68790"
40+ ]
41+ }
Original file line number Diff line number Diff line change 1+ # This file is generated by dune, edit dune-project instead
2+ opam-version: "2.0"
3+ synopsis: "Bitcoin Client API cohttp-lwt interface"
4+ description: "This is the cohttp-lwt I/O interface to the bitcoin client"
5+ maintainer: [
6+ "Dario Teixeira <
[email protected] >"
7+ "Michael Bacarella <
[email protected] >"
8+ ]
9+ authors: ["Dario Teixeira <
[email protected] >"]
10+ license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
11+ homepage: "https://github.com/darioteixeira/ocaml-bitcoin"
12+ bug-reports: "https://github.com/darioteixeira/ocaml-bitcoin/issues"
13+ depends: [
14+ "dune" {>= "2.8"}
15+ "bitcoin" {= version}
16+ "cohttp-lwt"
17+ "cohttp-lwt-unix"
18+ "odoc" {with-doc}
19+ ]
20+ build: [
21+ ["dune" "subst"] {dev}
22+ [
23+ "dune"
24+ "build"
25+ "-p"
26+ name
27+ "-j"
28+ jobs
29+ "@install"
30+ "@runtest" {with-test}
31+ "@doc" {with-doc}
32+ ]
33+ ]
34+ dev-repo: "git+https://github.com/darioteixeira/ocaml-bitcoin.git"
35+ url {
36+ src:
37+ "https://github.com/darioteixeira/ocaml-bitcoin/archive/refs/tags/v3.0.tar.gz"
38+ checksum: [
39+ "md5=5e9980ab580017ba356aa6cb972787fe"
40+ "sha512=d4cb6b83ddfeb4221b6c587a83752423d01e1695aa06c588b6cfc6f8c2288c2bf8d32485fa902aabf0c72310b5c4acfa4e66ef084febeca3f602668e39e68790"
41+ ]
42+ }
Original file line number Diff line number Diff line change 1+ # This file is generated by dune, edit dune-project instead
2+ opam-version: "2.0"
3+ synopsis: "Bitcoin Client API ocurl interface"
4+ description: "The ocurl I/O interface to the bitcoin client"
5+ maintainer: [
6+ "Dario Teixeira <
[email protected] >"
7+ "Michael Bacarella <
[email protected] >"
8+ ]
9+ authors: ["Dario Teixeira <
[email protected] >"]
10+ license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
11+ homepage: "https://github.com/darioteixeira/ocaml-bitcoin"
12+ bug-reports: "https://github.com/darioteixeira/ocaml-bitcoin/issues"
13+ depends: [
14+ "dune" {>= "2.8"}
15+ "bitcoin" {= version}
16+ "ocurl"
17+ "odoc" {with-doc}
18+ ]
19+ build: [
20+ ["dune" "subst"] {dev}
21+ [
22+ "dune"
23+ "build"
24+ "-p"
25+ name
26+ "-j"
27+ jobs
28+ "@install"
29+ "@runtest" {with-test}
30+ "@doc" {with-doc}
31+ ]
32+ ]
33+ dev-repo: "git+https://github.com/darioteixeira/ocaml-bitcoin.git"
34+ url {
35+ src:
36+ "https://github.com/darioteixeira/ocaml-bitcoin/archive/refs/tags/v3.0.tar.gz"
37+ checksum: [
38+ "md5=5e9980ab580017ba356aa6cb972787fe"
39+ "sha512=d4cb6b83ddfeb4221b6c587a83752423d01e1695aa06c588b6cfc6f8c2288c2bf8d32485fa902aabf0c72310b5c4acfa4e66ef084febeca3f602668e39e68790"
40+ ]
41+ }
Original file line number Diff line number Diff line change 1+ # This file is generated by dune, edit dune-project instead
2+ opam-version: "2.0"
3+ synopsis: "Bitcoin Client API logic-only"
4+ description: """
5+ An OCaml interface to the official Bitcoin client API.
6+ Works by making JSON-RPC calls over the network to a running
7+ Bitcoin daemon
8+ fering the client API."""
9+ maintainer: [
10+ "Dario Teixeira <
[email protected] >"
11+ "Michael Bacarella <
[email protected] >"
12+ ]
13+ authors: ["Dario Teixeira <
[email protected] >"]
14+ license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
15+ homepage: "https://github.com/darioteixeira/ocaml-bitcoin"
16+ bug-reports: "https://github.com/darioteixeira/ocaml-bitcoin/issues"
17+ depends: [
18+ "dune" {>= "2.8"}
19+ "cryptokit"
20+ "yojson" {>= "1.6.0"}
21+ "odoc" {with-doc}
22+ ]
23+ build: [
24+ ["dune" "subst"] {dev}
25+ [
26+ "dune"
27+ "build"
28+ "-p"
29+ name
30+ "-j"
31+ jobs
32+ "@install"
33+ "@runtest" {with-test}
34+ "@doc" {with-doc}
35+ ]
36+ ]
37+ dev-repo: "git+https://github.com/darioteixeira/ocaml-bitcoin.git"
38+ url {
39+ src:
40+ "https://github.com/darioteixeira/ocaml-bitcoin/archive/refs/tags/v3.0.tar.gz"
41+ checksum: [
42+ "md5=5e9980ab580017ba356aa6cb972787fe"
43+ "sha512=d4cb6b83ddfeb4221b6c587a83752423d01e1695aa06c588b6cfc6f8c2288c2bf8d32485fa902aabf0c72310b5c4acfa4e66ef084febeca3f602668e39e68790"
44+ ]
45+ }
You can’t perform that action at this time.
0 commit comments