-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
72 lines (65 loc) · 1.89 KB
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
(lang dune 3.8)
(using mdx 0.4)
;; Project configuration
(name yourbones)
(generate_opam_files true)
;; Project description
(source (github funkywork/yourbones))
(license MIT)
(authors "Funkywork")
(maintainers "Funkywork")
;; Packages description
(package
(name yourbones)
(synopsis "A companion library for writing applications on Tezos")
(description "A companion library for writing dApps in OCaml that should fit with Nightmare")
(depends
(ocaml (>= 5.0.0))
(data-encoding (>= 0.7.1))
(digestif (>= 1.1.0))
preface
zarith
tezos-base58
(nightmare :pinned)
(nightmare-test (and :pinned :with-test))
(alcotest :with-test)))
(package
(name yourbones-ppx)
(synopsis "A ppx companion for Yourbones")
(description "Some syntax extension to deal with Tezos values")
(depends
(ocaml (>= 5.0.0))
(ppxlib (>= 0.29.1))
(yourbones (= :version))
(mdx (and :with-test (>= 2.0.0)))))
(package
(name yourbones_js)
(synopsis "The JavaScript runtime for interaction with Tezos")
(description "JavaScript runtime to exploit data described by the Yourbones library and interact with Tezos RPCs")
(depends
(ocaml (>= 5.0.0))
(lwt (>= 5.6.1))
(preface (>= 1.0.0))
(js_of_ocaml-compiler (>= 5.6.0))
(js_of_ocaml-ppx (>= 5.6.0))
(js_of_ocaml-lwt (>= 5.6.0))
zarith_stubs_js
(nightmare :pinned)
(nightmare_js :pinned)
(yourbones (= :version))))
(package
(name yourbones_js-beacon)
(synopsis "A very opinionated binding of Beacon-SDK in Js_of_OCaml")
(description "An attempt to progressively link the Beacon SDK (TZIP-10) to interact with Wallets in a dApp")
(depends
(ocaml (>= 5.0.0))
(lwt (>= 5.6.1))
(preface (>= 1.0.0))
(js_of_ocaml-compiler (>= 5.6.0))
(js_of_ocaml-ppx (>= 5.6.0))
(js_of_ocaml-lwt (>= 5.6.0))
zarith_stubs_js
(nightmare :pinned)
(nightmare_js :pinned)
(yourbones (= :version))
(yourbones-ppx (= :version))))