init
This commit is contained in:
commit
7f276c45a0
12 changed files with 673 additions and 0 deletions
30
purr_chacha.opam
Normal file
30
purr_chacha.opam
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# This file is generated by dune, edit dune-project instead
|
||||
opam-version: "2.0"
|
||||
synopsis: "Implement ChaCha20 stream cipher"
|
||||
description: "A pure OCaml implementation of ChaCha20 stream cipher"
|
||||
maintainer: ["swrup <swrup@protonmail.com>"]
|
||||
authors: ["swrup <swrup@protonmail.com>"]
|
||||
license: "MIT"
|
||||
tags: ["cryptography" "chacha20"]
|
||||
homepage: "https://forge.kumikode.org/swrup/purr_chacha"
|
||||
bug-reports: "https://forge.kumikode.org/swrup/purr_chacha/issues"
|
||||
depends: [
|
||||
"ocaml"
|
||||
"dune" {>= "3.12"}
|
||||
"odoc" {with-doc}
|
||||
]
|
||||
build: [
|
||||
["dune" "subst"] {dev}
|
||||
[
|
||||
"dune"
|
||||
"build"
|
||||
"-p"
|
||||
name
|
||||
"-j"
|
||||
jobs
|
||||
"@install"
|
||||
"@runtest" {with-test}
|
||||
"@doc" {with-doc}
|
||||
]
|
||||
]
|
||||
dev-repo: "https://forge.kumikode.org/swrup/purr_chacha.git"
|
||||
Loading…
Add table
Add a link
Reference in a new issue