mte/src/dune

40 lines
554 B
Text
Raw Normal View History

2025-09-13 15:56:19 +02:00
(executable
(public_name mte)
(name mte)
2025-10-03 21:24:02 +02:00
(modules mte)
(libraries mte))
(library
(name mte)
(wrapped false)
(modules :standard \ mte base_32)
2025-09-28 21:27:15 +02:00
(libraries
2025-10-03 21:24:02 +02:00
base_32
2025-09-28 21:27:15 +02:00
;
include
;
2025-10-03 21:24:02 +02:00
angstrom
zarith ;
2025-10-02 16:32:43 +02:00
mirage-crypto
2025-10-01 19:34:42 +02:00
duration
2025-09-28 21:27:15 +02:00
vif
fmt
jsont
cohttp))
2025-10-03 21:24:02 +02:00
; crockford base32, as a lib to use [Base32] by accident *)
2025-09-13 19:32:30 +02:00
2025-09-30 16:39:08 +02:00
(library
(name base_32)
(modules base_32)
(libraries base32))
2025-09-13 19:32:30 +02:00
(rule
2025-09-23 20:58:34 +02:00
(target assets_crunch.ml)
2025-09-13 19:32:30 +02:00
(deps
(source_tree assets))
(action
(with-stdout-to
%{null}
(run ocaml-crunch -m plain assets -o %{target}))))