From ca3a8593673aaa2f6bab69b6abf76eade88df5b6 Mon Sep 17 00:00:00 2001 From: Ulrik Strid Date: Tue, 17 Dec 2024 09:52:39 +0100 Subject: [PATCH] [new release] oidc (0.2.0) CHANGES: - Upgrade mirage-crypto and remove cstruct (by @anmonteiro) - Remove esy - Add nonce to `SimpleClient.valid_token_of_string` --- packages/oidc/oidc.0.2.0/opam | 50 +++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 packages/oidc/oidc.0.2.0/opam diff --git a/packages/oidc/oidc.0.2.0/opam b/packages/oidc/oidc.0.2.0/opam new file mode 100644 index 00000000000..4be823d5a04 --- /dev/null +++ b/packages/oidc/oidc.0.2.0/opam @@ -0,0 +1,50 @@ +opam-version: "2.0" +synopsis: "Base package for working with OIDC" +description: "Base functions and types to work with OpenID Connect." +maintainer: ["ulrik.strid@outlook.com"] +authors: ["Ulrik Strid"] +license: "BSD-3-Clause" +homepage: "https://ulrikstrid.github.io/ocaml-oidc" +doc: "https://ulrikstrid.github.io/ocaml-oidc" +bug-reports: "https://github.com/ulrikstrid/ocaml-oidc/issues" +depends: [ + "ocaml" {>= "4.08.0"} + "dune" {>= "2.8"} + "jose" {>= "0.10.0"} + "uri" + "yojson" + "logs" + "eqaf" + "alcotest" {with-test} + "junit" {with-test} + "junit_alcotest" {with-test} + "containers" {with-test} + "mirage-crypto" {with-test & >= "1.0.0"} + "mirage-crypto-rng" {with-test & >= "1.0.0"} + "mirage-crypto-pk" {with-test & >= "1.0.0"} + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] +dev-repo: "git+https://github.com/ulrikstrid/ocaml-oidc.git" +url { + src: + "https://github.com/ulrikstrid/ocaml-oidc/releases/download/v0.2.0/oidc-v0.2.0.tbz" + checksum: [ + "sha256=344fce5b905eb155a161f4e68778cff80d1318c2fb9bf370fad9da7e3302205a" + "sha512=7b4db0a1b3fc0eabc58e8b966b0f6a99ab601fd0f6ad7dfdc9908fce607f77088de7cae0cc09ee852caff0f94e8e2fcb7c768035482571a41ebfad2cfe6a2b51" + ] +} +x-commit-hash: "e12b2a75e2f8d9e41b1f769cd0add8f2d93c8beb"