+8
-5
dune-project
+8
-5
dune-project
···
1
1
(lang dune 3.20)
2
2
3
3
(name swim)
4
+
(version 0.1.0)
4
5
5
6
(generate_opam_files true)
6
7
7
8
(source
8
-
(github gdiazlo/swim))
9
+
(uri git+https://tangled.org/gdiazlo.tngl.sh/swim))
9
10
10
-
(authors "Guillermo Diaz-Romero <guillermo.diaz@gmail.com>")
11
+
(authors "Gabriel Diaz")
11
12
12
-
(maintainers "Guillermo Diaz-Romero <guillermo.diaz@gmail.com>")
13
+
(maintainers "Gabriel Diaz")
13
14
14
-
(license MIT)
15
+
(license ISC)
15
16
16
-
(documentation https://github.com/gdiazlo/swim)
17
+
(homepage https://tangled.org/gdiazlo.tngl.sh/swim)
18
+
(bug_reports https://tangled.org/gdiazlo.tngl.sh/swim/issues)
19
+
(documentation https://tangled.org/gdiazlo.tngl.sh/swim)
17
20
18
21
(package
19
22
(name swim)
+8
-7
swim.opam
+8
-7
swim.opam
···
1
1
# This file is generated by dune, edit dune-project instead
2
2
opam-version: "2.0"
3
+
version: "0.1.0"
3
4
synopsis:
4
5
"SWIM protocol library for cluster membership and failure detection"
5
6
description:
6
7
"Production-ready SWIM (Scalable Weakly-consistent Infection-style Process Group Membership) protocol library in OCaml 5 for cluster membership, failure detection, and lightweight pub/sub messaging. Features lock-free coordination via kcas, zero-copy buffer management, and AES-256-GCM encryption."
7
-
maintainer: ["Guillermo Diaz-Romero <guillermo.diaz@gmail.com>"]
8
-
authors: ["Guillermo Diaz-Romero <guillermo.diaz@gmail.com>"]
9
-
license: "MIT"
8
+
maintainer: ["Gabriel Diaz"]
9
+
authors: ["Gabriel Diaz"]
10
+
license: "ISC"
10
11
tags: [
11
12
"swim" "cluster" "membership" "gossip" "failure detection" "ocaml5" "eio"
12
13
]
13
-
homepage: "https://github.com/gdiazlo/swim"
14
-
doc: "https://github.com/gdiazlo/swim"
15
-
bug-reports: "https://github.com/gdiazlo/swim/issues"
14
+
homepage: "https://tangled.org/gdiazlo.tngl.sh/swim"
15
+
doc: "https://tangled.org/gdiazlo.tngl.sh/swim"
16
+
bug-reports: "https://tangled.org/gdiazlo.tngl.sh/swim/issues"
16
17
depends: [
17
18
"ocaml" {>= "5.1"}
18
19
"dune" {>= "3.20" & >= "3.20"}
···
46
47
"@doc" {with-doc}
47
48
]
48
49
]
49
-
dev-repo: "git+https://github.com/gdiazlo/swim.git"
50
+
dev-repo: "git+https://tangled.org/gdiazlo.tngl.sh/swim"
50
51
x-maintenance-intent: ["(latest)"]