Skip to content

Commit acff582

Browse files
authored
Merge pull request ocaml#22583 from victor-dumitrescu/opam-publish-tezos-bls12-381-polynomial-tezos-plompiler-tezos-plonk.1.0.1
3 packages from gitlab.com/nomadic-labs/cryptography/privacy-team/-/archive/v1.0.1/privacy-team-v1.0.1.tar.gz
2 parents e0dad94 + 4b14fcb commit acff582

File tree

4 files changed

+112
-1
lines changed
  • packages
    • tezos-bls12-381-polynomial/tezos-bls12-381-polynomial.1.0.1
    • tezos-plompiler
      • tezos-plompiler.1.0.0
      • tezos-plompiler.1.0.1
    • tezos-plonk/tezos-plonk.1.0.1

4 files changed

+112
-1
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Polynomials over BLS12-381 finite field"
3+
maintainer: "[email protected]"
4+
authors: "Nomadic Labs Privacy Team"
5+
license: "MIT"
6+
homepage:
7+
"https://research-development.nomadic-labs.com/files/cryptography.html"
8+
bug-reports:
9+
"https://gitlab.com/nomadic-labs/cryptography/privacy-team/-/issues"
10+
depends: [
11+
"dune" {>= "2.8"}
12+
"ocaml" {>= "4.12.0"}
13+
"bls12-381" {>= "4.0.0"}
14+
"ppx_repr" {>= "0.6.0"}
15+
"bigstringaf" {>= "0.5.0"}
16+
"alcotest" {with-test & >= "1.1.0"}
17+
"qcheck-alcotest" {with-test}
18+
"polynomial" {with-test & >= "0.4.0" & < "0.5.0"}
19+
"bisect_ppx" {with-test}
20+
"odoc" {with-doc}
21+
]
22+
build: [
23+
["dune" "subst"] {dev}
24+
[
25+
"dune"
26+
"build"
27+
"-p"
28+
name
29+
"-j"
30+
jobs
31+
"@install"
32+
"@runtest" {with-test}
33+
"@doc" {with-doc}
34+
]
35+
]
36+
dev-repo: "git+https://gitlab.com/nomadic-labs/cryptography/privacy-team.git"
37+
url {
38+
src:
39+
"https://gitlab.com/nomadic-labs/cryptography/privacy-team/-/archive/v1.0.1/privacy-team-v1.0.1.tar.gz"
40+
checksum: [
41+
"md5=03d6ca5fb1c6865b6628e0dd49575895"
42+
"sha512=20494d1d00ded43f3625e06e037d3bad04f0a7320914b542b882d3d0293c9b02845b7ca9ee4ff0eb8ea495eff5633016861c39370cca92c12aacae0e84483ca4"
43+
]
44+
}

packages/tezos-plompiler/tezos-plompiler.1.0.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ depends: [
1212
"ocaml" {>= "4.12.0"}
1313
"hacl-star" {>= "0.4.0"}
1414
"bls12-381" {>= "4.0.0"}
15-
"bls12-381-hash" {>= "0.0.3" & < "1.0.0"}
15+
"bls12-381-hash" {= "0.0.4"}
1616
"ppx_repr" {>= "0.6.0"}
1717
"hex"
1818
"stdint"
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
opam-version: "2.0"
2+
synopsis: "Library to write arithmetic circuits for Plonk"
3+
maintainer: "[email protected]"
4+
authors: "Nomadic Labs Privacy Team"
5+
license: "MIT"
6+
homepage:
7+
"https://research-development.nomadic-labs.com/files/cryptography.html"
8+
bug-reports:
9+
"https://gitlab.com/nomadic-labs/cryptography/privacy-team/-/issues"
10+
depends: [
11+
"dune" {>= "2.8"}
12+
"ocaml" {>= "4.12.0"}
13+
"hacl-star" {>= "0.4.0"}
14+
"bls12-381" {>= "4.0.0"}
15+
"bls12-381-hash" {>= "0.0.5" & < "1.0.0"}
16+
"ppx_repr" {>= "0.6.0"}
17+
"hex"
18+
"stdint"
19+
"polynomial" {>= "0.4.0" & < "0.5.0"}
20+
"mec" {= "0.1.0"}
21+
"odoc" {with-doc}
22+
]
23+
build: [
24+
["dune" "subst"] {dev}
25+
["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
26+
]
27+
dev-repo: "git+https://gitlab.com/nomadic-labs/cryptography/privacy-team.git"
28+
url {
29+
src:
30+
"https://gitlab.com/nomadic-labs/cryptography/privacy-team/-/archive/v1.0.1/privacy-team-v1.0.1.tar.gz"
31+
checksum: [
32+
"md5=03d6ca5fb1c6865b6628e0dd49575895"
33+
"sha512=20494d1d00ded43f3625e06e037d3bad04f0a7320914b542b882d3d0293c9b02845b7ca9ee4ff0eb8ea495eff5633016861c39370cca92c12aacae0e84483ca4"
34+
]
35+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
opam-version: "2.0"
2+
synopsis: "Plonk zero-knowledge proving system"
3+
maintainer: "[email protected]"
4+
authors: "Nomadic Labs Privacy Team"
5+
license: "MIT"
6+
homepage:
7+
"https://research-development.nomadic-labs.com/files/cryptography.html"
8+
bug-reports:
9+
"https://gitlab.com/nomadic-labs/cryptography/privacy-team/-/issues"
10+
depends: [
11+
"dune" {>= "2.8"}
12+
"ocaml" {>= "4.12.0"}
13+
"hacl-star" {>= "0.4.0"}
14+
"ppx_repr" {>= "0.6.0"}
15+
"data-encoding"
16+
"tezos-bls12-381-polynomial" {= version}
17+
"tezos-plompiler" {= version}
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}]
23+
]
24+
dev-repo: "git+https://gitlab.com/nomadic-labs/cryptography/privacy-team.git"
25+
url {
26+
src:
27+
"https://gitlab.com/nomadic-labs/cryptography/privacy-team/-/archive/v1.0.1/privacy-team-v1.0.1.tar.gz"
28+
checksum: [
29+
"md5=03d6ca5fb1c6865b6628e0dd49575895"
30+
"sha512=20494d1d00ded43f3625e06e037d3bad04f0a7320914b542b882d3d0293c9b02845b7ca9ee4ff0eb8ea495eff5633016861c39370cca92c12aacae0e84483ca4"
31+
]
32+
}

0 commit comments

Comments
 (0)