File tree Expand file tree Collapse file tree 3 files changed +128
-0
lines changed
happy-eyeballs-lwt/happy-eyeballs-lwt.0.1.3
happy-eyeballs-mirage/happy-eyeballs-mirage.0.1.3
happy-eyeballs/happy-eyeballs.0.1.3 Expand file tree Collapse file tree 3 files changed +128
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ maintainer: "Robur <team@robur.coop>"
3+ authors: ["Robur <team@robur.coop>"]
4+ homepage: "https://github.com/roburio/happy-eyeballs"
5+ dev-repo: "git+https://github.com/roburio/happy-eyeballs.git"
6+ bug-reports: "https://github.com/roburio/happy-eyeballs/issues"
7+ doc: "https://roburio.github.io/happy-eyeballs/"
8+ license: "ISC"
9+
10+ depends: [
11+ "ocaml" {>= "4.08.0"}
12+ "dune" {>= "2.0.0"}
13+ "happy-eyeballs" {=version}
14+ "cmdliner"
15+ "duration"
16+ "dns-client" {>= "6.0.0"}
17+ "domain-name"
18+ "ipaddr"
19+ "fmt"
20+ "logs"
21+ "lwt"
22+ "mtime" {>= "1.0.0"}
23+ ]
24+ build: [
25+ ["dune" "subst"] {dev}
26+ ["dune" "build" "-p" name "-j" jobs]
27+ ]
28+
29+ synopsis: "Connecting to a remote host via IP version 4 or 6 using Lwt_unix"
30+ description: """
31+ Happy eyeballs is an implementation of RFC 8305 which specifies how to connect
32+ to a remote host using either IP protocol version 4 or IP protocol version 6.
33+ This uses Lwt and Lwt_unix for side effects.
34+ """
35+ url {
36+ src:
37+ "https://github.com/roburio/happy-eyeballs/releases/download/v0.1.3/happy-eyeballs-0.1.3.tbz"
38+ checksum: [
39+ "sha256=2c303692dcfbbf86a07dd569a462866efef6b252826e5315c133835e595f415b"
40+ "sha512=a8b67194634e908bfca4a8ab65d7c3ba1013d324b46f03af94293a6b724dc062f938afad6948d14b4badd87681bf030ed55ce15c6887d8b41c0558791441d22b"
41+ ]
42+ }
43+ x-commit-hash: "3e216048e25cc6e8b29ddad3930b7250468c2100"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ maintainer: "Robur <team@robur.coop>"
3+ authors: ["Robur <team@robur.coop>"]
4+ homepage: "https://github.com/roburio/happy-eyeballs"
5+ dev-repo: "git+https://github.com/roburio/happy-eyeballs.git"
6+ bug-reports: "https://github.com/roburio/happy-eyeballs/issues"
7+ doc: "https://roburio.github.io/happy-eyeballs/"
8+ license: "ISC"
9+
10+ depends: [
11+ "ocaml" {>= "4.08.0"}
12+ "dune" {>= "2.0.0"}
13+ "happy-eyeballs" {=version}
14+ "duration"
15+ "dns-client" {>= "6.0.0"}
16+ "domain-name"
17+ "ipaddr"
18+ "fmt"
19+ "logs"
20+ "lwt"
21+ "mirage-clock" {>= "3.0.0"}
22+ "tcpip" {>= "7.0.0"}
23+ "mirage-random" {>= "2.0.0"}
24+ "mirage-time" {>= "2.0.0"}
25+ ]
26+ build: [
27+ ["dune" "subst"] {dev}
28+ ["dune" "build" "-p" name "-j" jobs]
29+ ]
30+
31+ synopsis: "Connecting to a remote host via IP version 4 or 6 using Mirage"
32+ description: """
33+ Happy eyeballs is an implementation of RFC 8305 which specifies how to connect
34+ to a remote host using either IP protocol version 4 or IP protocol version 6.
35+ This uses Lwt and Mirage for side effects.
36+ """
37+ url {
38+ src:
39+ "https://github.com/roburio/happy-eyeballs/releases/download/v0.1.3/happy-eyeballs-0.1.3.tbz"
40+ checksum: [
41+ "sha256=2c303692dcfbbf86a07dd569a462866efef6b252826e5315c133835e595f415b"
42+ "sha512=a8b67194634e908bfca4a8ab65d7c3ba1013d324b46f03af94293a6b724dc062f938afad6948d14b4badd87681bf030ed55ce15c6887d8b41c0558791441d22b"
43+ ]
44+ }
45+ x-commit-hash: "3e216048e25cc6e8b29ddad3930b7250468c2100"
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ maintainer: "Robur <team@robur.coop>"
3+ authors: ["Robur <team@robur.coop>"]
4+ homepage: "https://github.com/roburio/happy-eyeballs"
5+ dev-repo: "git+https://github.com/roburio/happy-eyeballs.git"
6+ bug-reports: "https://github.com/roburio/happy-eyeballs/issues"
7+ doc: "https://roburio.github.io/happy-eyeballs/"
8+ license: "ISC"
9+
10+ depends: [
11+ "ocaml" {>= "4.08.0"}
12+ "dune" {>= "2.0.0"}
13+ "duration"
14+ "domain-name" {>= "0.2.0"}
15+ "ipaddr" {>= "5.2.0"}
16+ "fmt" {>= "0.8.7"}
17+ "logs"
18+ ]
19+ build: [
20+ ["dune" "subst"] {dev}
21+ ["dune" "build" "-p" name "-j" jobs]
22+ ]
23+
24+ synopsis: "Connecting to a remote host via IP version 4 or 6"
25+ description: """
26+ Happy eyeballs is an implementation of
27+ [RFC 8305](https://datatracker.ietf.org/doc/html/rfc8305) which specifies how
28+ to connect to a remote host using either IP protocol version 4 or IP protocol
29+ version 6. This is the core of the algorithm in value passing style, with a
30+ slick dependency cone.
31+ """
32+ url {
33+ src:
34+ "https://github.com/roburio/happy-eyeballs/releases/download/v0.1.3/happy-eyeballs-0.1.3.tbz"
35+ checksum: [
36+ "sha256=2c303692dcfbbf86a07dd569a462866efef6b252826e5315c133835e595f415b"
37+ "sha512=a8b67194634e908bfca4a8ab65d7c3ba1013d324b46f03af94293a6b724dc062f938afad6948d14b4badd87681bf030ed55ce15c6887d8b41c0558791441d22b"
38+ ]
39+ }
40+ x-commit-hash: "3e216048e25cc6e8b29ddad3930b7250468c2100"
You can’t perform that action at this time.
0 commit comments