this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/krb"
5bug-reports: "https://github.com/janestreet/krb/issues"
6dev-repo: "git+https://github.com/janestreet/krb.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/krb/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "4.14.0"}
14 "async" {>= "v0.16" & < "v0.17"}
15 "base" {>= "v0.16" & < "v0.17"}
16 "core" {>= "v0.16" & < "v0.17"}
17 "env_config" {>= "v0.16" & < "v0.17"}
18 "hex_encode" {>= "v0.16" & < "v0.17"}
19 "ppx_jane" {>= "v0.16" & < "v0.17"}
20 "protocol_version_header" {>= "v0.16" & < "v0.17"}
21 "stdio" {>= "v0.16" & < "v0.17"}
22 "username_kernel" {>= "v0.16" & < "v0.17"}
23 "dune" {>= "2.0.0"}
24 "dune-configurator"
25]
26synopsis: "A library for using Kerberos for both Rpc and Tcp communication"
27description: "
28Jane Street's library for Kerberizing RPC connections so that
29 - the server gets an authenticated principal (i.e. username) with
30 every incoming connection, and
31 - RPC communication may be encrypted, if necessary.
32"
33depexts: [
34 ["libkrb5-dev"] {os-family = "debian"}
35 ["krb5-devel"] {os-family = "fedora" | os-family = "suse" | os-family = "opensuse"}
36]
37available: (arch = "x86_64" | arch = "arm64") & os = "linux"
38url {
39src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/krb-v0.16.0.tar.gz"
40checksum: "sha256=353675621e4c5a888f2483dc1bb7281bd17ce4ed7dfd2f40142257f98db7c77d"
41}