This commit is contained in:
parent
fa770e7a8e
commit
3a927a78f5
11 changed files with 17 additions and 29 deletions
5
include/dune
Normal file
5
include/dune
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
(library
|
||||||
|
(name include)
|
||||||
|
; (wrapped false)
|
||||||
|
(modules taler_signatures)
|
||||||
|
(libraries))
|
||||||
25
lib/dune
25
lib/dune
|
|
@ -1,25 +0,0 @@
|
||||||
(library
|
|
||||||
(name include)
|
|
||||||
; (wrapped false)
|
|
||||||
(modules taler_signatures)
|
|
||||||
(libraries))
|
|
||||||
|
|
||||||
(library
|
|
||||||
(name parse_config)
|
|
||||||
(modules parse_config)
|
|
||||||
(libraries mirage-crypto-ec ptime fmt angstrom uri amount b32))
|
|
||||||
|
|
||||||
(library ; crockford base32
|
|
||||||
(name b32)
|
|
||||||
(modules b32)
|
|
||||||
(libraries base32))
|
|
||||||
|
|
||||||
(library
|
|
||||||
(name amount)
|
|
||||||
(modules amount)
|
|
||||||
(libraries angstrom fmt zarith))
|
|
||||||
|
|
||||||
(library
|
|
||||||
(name headers_lib)
|
|
||||||
(modules headers_lib)
|
|
||||||
(libraries angstrom fmt))
|
|
||||||
10
src/dune
10
src/dune
|
|
@ -7,13 +7,10 @@
|
||||||
(library
|
(library
|
||||||
(name mte)
|
(name mte)
|
||||||
(wrapped false)
|
(wrapped false)
|
||||||
(modules :standard \ mte)
|
(modules :standard \ mte b32)
|
||||||
(libraries
|
(libraries
|
||||||
amount
|
|
||||||
b32
|
b32
|
||||||
include
|
include
|
||||||
parse_config
|
|
||||||
headers_lib
|
|
||||||
;
|
;
|
||||||
caqti
|
caqti
|
||||||
caqti-miou
|
caqti-miou
|
||||||
|
|
@ -29,6 +26,11 @@
|
||||||
cohttp
|
cohttp
|
||||||
ptime))
|
ptime))
|
||||||
|
|
||||||
|
(library ; crockford base32
|
||||||
|
(name b32)
|
||||||
|
(modules b32)
|
||||||
|
(libraries base32))
|
||||||
|
|
||||||
(rule
|
(rule
|
||||||
(target assets_crunch.ml)
|
(target assets_crunch.ml)
|
||||||
(deps
|
(deps
|
||||||
|
|
|
||||||
5
tools/dune
Normal file
5
tools/dune
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
(executable
|
||||||
|
(public_name offline)
|
||||||
|
(name offline)
|
||||||
|
(modules offline)
|
||||||
|
(libraries cmdliner bos fmt mirage-crypto ptime mte))
|
||||||
1
tools/offline.ml
Normal file
1
tools/offline.ml
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
let () = Fmt.pr "hello~@."; ()
|
||||||
Loading…
Add table
Add a link
Reference in a new issue