diff options
author | Brian Chu <brianmchu42@gmail.com> | 2022-08-20 10:19:53 -0700 |
---|---|---|
committer | Brian Chu <brianmchu42@gmail.com> | 2022-08-20 10:19:53 -0700 |
commit | c9a6741617eb28834674a5ef84daae4366ac4101 (patch) | |
tree | d0bf55bc68b10d3d152ddbf43d7545cd9e94ed75 /dune-project | |
parent | 484c4a998f9782eb0b84ec9121d6718fa6d35c1d (diff) | |
download | AdventOfCode2018-c9a6741617eb28834674a5ef84daae4366ac4101.tar.gz |
set up solution skeletons, driver framework, and solution for day 1
Diffstat (limited to 'dune-project')
-rw-r--r-- | dune-project | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/dune-project b/dune-project index ce69210..7e3a5d2 100644 --- a/dune-project +++ b/dune-project @@ -5,22 +5,16 @@ (generate_opam_files true) (source - (github username/reponame)) + (uri https://git.tilde.institute/brinoleum/AdventOfCode/AdventOfCode2018.git)) -(authors "Author Name") +(authors "Brian Chu") -(maintainers "Maintainer Name") - -(license LICENSE) - -(documentation https://url/to/documentation) +(license GPL-3+) (package (name AoC2018) - (synopsis "A short synopsis") - (description "A longer description") - (depends ocaml dune) - (tags - (topics "to describe" your project))) + (synopsis "Solutions for Advent of Code 2018") + (depends ocaml dune stdio core) +) ; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project |