Skip to content

Commit 6381409

Browse files
authored
Merge pull request #23343 from n-raymond/opam-publish-resto.1.1
8 packages from gitlab.com/nomadic-labs/resto/-/archive/v1.1/resto-v1.1.tar.gz
2 parents d95a0fc + 90e0134 commit 6381409

File tree

8 files changed

+207
-0
lines changed
  • packages
    • resto/resto.1.1
    • resto-acl/resto-acl.1.1
    • resto-cohttp/resto-cohttp.1.1
    • resto-cohttp-client/resto-cohttp-client.1.1
    • resto-cohttp-self-serving-client/resto-cohttp-self-serving-client.1.1
    • resto-cohttp-server/resto-cohttp-server.1.1
    • resto-directory/resto-directory.1.1
    • resto-json/resto-json.1.1

8 files changed

+207
-0
lines changed

packages/resto-acl/resto-acl.1.1/opam

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
opam-version: "2.0"
2+
synopsis: "Access Control Lists for Resto"
3+
maintainer: "[email protected]"
4+
authors: "Nomadic Labs"
5+
license: "MIT"
6+
homepage: "https://gitlab.com/nomadic-labs/resto"
7+
bug-reports: "https://gitlab.com/nomadic-labs/resto/issues"
8+
depends: [
9+
"ocaml" {>= "4.10"}
10+
"dune" {>= "1.11"}
11+
"uri" {>= "1.9.0"}
12+
"resto" {= version}
13+
]
14+
build: ["dune" "build" "-p" name "-j" jobs]
15+
dev-repo: "git+https://gitlab.com/nomadic-labs/resto"
16+
url {
17+
src:
18+
"https://gitlab.com/nomadic-labs/resto/-/archive/v1.1/resto-v1.1.tar.gz"
19+
checksum: [
20+
"md5=d8a6024e07861320e619532068392ebb"
21+
"sha512=921e86bca062e70d27acd2d7e7b2a4c383f31ecae09f711f77878d81beeb8f7082bc4476cc62ece21e3884b3d28547e1e9360b4949038491275c35e28a93f7e5"
22+
]
23+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
opam-version: "2.0"
2+
synopsis: "A minimal OCaml library for type-safe HTTP/JSON RPCs"
3+
maintainer: "[email protected]"
4+
authors: ["Nomadic Labs" "Ocamlpro"]
5+
license: "MIT"
6+
homepage: "https://gitlab.com/nomadic-labs/resto"
7+
bug-reports: "https://gitlab.com/nomadic-labs/resto/issues"
8+
depends: [
9+
"ocaml" {>= "4.10"}
10+
"dune" {>= "1.11"}
11+
"uri" {>= "1.9.0"}
12+
"resto-cohttp" {= version}
13+
"cohttp-lwt" {>= "4.0.0"}
14+
"lwt" {>= "3.0.0" & < "6.0.0"}
15+
]
16+
build: ["dune" "build" "-p" name "-j" jobs]
17+
dev-repo: "git+https://gitlab.com/nomadic-labs/resto"
18+
url {
19+
src:
20+
"https://gitlab.com/nomadic-labs/resto/-/archive/v1.1/resto-v1.1.tar.gz"
21+
checksum: [
22+
"md5=d8a6024e07861320e619532068392ebb"
23+
"sha512=921e86bca062e70d27acd2d7e7b2a4c383f31ecae09f711f77878d81beeb8f7082bc4476cc62ece21e3884b3d28547e1e9360b4949038491275c35e28a93f7e5"
24+
]
25+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
opam-version: "2.0"
2+
synopsis: "A minimal OCaml library for type-safe HTTP/JSON RPCs"
3+
maintainer: "[email protected]"
4+
authors: "Nomadic Labs"
5+
license: "MIT"
6+
homepage: "https://gitlab.com/nomadic-labs/resto"
7+
bug-reports: "https://gitlab.com/nomadic-labs/resto/issues"
8+
depends: [
9+
"ocaml" {>= "4.10"}
10+
"dune" {>= "1.11"}
11+
"uri" {>= "1.9.0"}
12+
"resto-cohttp-client" {= version}
13+
"resto-cohttp-server" {= version}
14+
"cohttp-lwt" {>= "1.0.0"}
15+
"lwt" {>= "3.0.0" & < "6.0.0"}
16+
]
17+
build: ["dune" "build" "-p" name "-j" jobs]
18+
dev-repo: "git+https://gitlab.com/nomadic-labs/resto"
19+
url {
20+
src:
21+
"https://gitlab.com/nomadic-labs/resto/-/archive/v1.1/resto-v1.1.tar.gz"
22+
checksum: [
23+
"md5=d8a6024e07861320e619532068392ebb"
24+
"sha512=921e86bca062e70d27acd2d7e7b2a4c383f31ecae09f711f77878d81beeb8f7082bc4476cc62ece21e3884b3d28547e1e9360b4949038491275c35e28a93f7e5"
25+
]
26+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"A minimal OCaml library for type-safe HTTP/JSON RPCs - server library"
4+
maintainer: "[email protected]"
5+
authors: ["Nomadic Labs" "Ocamlpro"]
6+
license: "MIT"
7+
homepage: "https://gitlab.com/nomadic-labs/resto"
8+
bug-reports: "https://gitlab.com/nomadic-labs/resto/issues"
9+
depends: [
10+
"ocaml" {>= "4.10"}
11+
"dune" {>= "1.11"}
12+
"resto-directory" {= version}
13+
"resto-cohttp" {= version}
14+
"resto-acl" {= version}
15+
"cohttp-lwt-unix" {>= "2.0.0"}
16+
"conduit-lwt-unix" {>= "2.0.0"}
17+
"lwt" {>= "3.0.0" & < "6.0.0"}
18+
]
19+
build: ["dune" "build" "-p" name "-j" jobs]
20+
dev-repo: "git+https://gitlab.com/nomadic-labs/resto"
21+
url {
22+
src:
23+
"https://gitlab.com/nomadic-labs/resto/-/archive/v1.1/resto-v1.1.tar.gz"
24+
checksum: [
25+
"md5=d8a6024e07861320e619532068392ebb"
26+
"sha512=921e86bca062e70d27acd2d7e7b2a4c383f31ecae09f711f77878d81beeb8f7082bc4476cc62ece21e3884b3d28547e1e9360b4949038491275c35e28a93f7e5"
27+
]
28+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
opam-version: "2.0"
2+
synopsis: "A minimal OCaml library for type-safe HTTP/JSON RPCs"
3+
maintainer: "[email protected]"
4+
authors: ["Nomadic Labs" "Ocamlpro"]
5+
license: "MIT"
6+
homepage: "https://gitlab.com/nomadic-labs/resto"
7+
bug-reports: "https://gitlab.com/nomadic-labs/resto/issues"
8+
depends: [
9+
"ocaml" {>= "4.10"}
10+
"dune" {>= "1.11"}
11+
"resto-directory" {= version}
12+
"cohttp-lwt" {>= "1.0.0"}
13+
]
14+
build: ["dune" "build" "-p" name "-j" jobs]
15+
dev-repo: "git+https://gitlab.com/nomadic-labs/resto"
16+
url {
17+
src:
18+
"https://gitlab.com/nomadic-labs/resto/-/archive/v1.1/resto-v1.1.tar.gz"
19+
checksum: [
20+
"md5=d8a6024e07861320e619532068392ebb"
21+
"sha512=921e86bca062e70d27acd2d7e7b2a4c383f31ecae09f711f77878d81beeb8f7082bc4476cc62ece21e3884b3d28547e1e9360b4949038491275c35e28a93f7e5"
22+
]
23+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
opam-version: "2.0"
2+
synopsis: "A minimal OCaml library for type-safe HTTP/JSON RPCs"
3+
maintainer: "[email protected]"
4+
authors: ["Nomadic Labs" "Ocamlpro"]
5+
license: "MIT"
6+
homepage: "https://gitlab.com/nomadic-labs/resto"
7+
bug-reports: "https://gitlab.com/nomadic-labs/resto/issues"
8+
depends: [
9+
"ocaml" {>= "4.10"}
10+
"dune" {>= "1.11"}
11+
"resto" {= version}
12+
"resto-json" {= version & with-test}
13+
"lwt" {>= "3.0.0" & < "6.0.0"}
14+
]
15+
build: ["dune" "build" "-p" name "-j" jobs]
16+
dev-repo: "git+https://gitlab.com/nomadic-labs/resto"
17+
url {
18+
src:
19+
"https://gitlab.com/nomadic-labs/resto/-/archive/v1.1/resto-v1.1.tar.gz"
20+
checksum: [
21+
"md5=d8a6024e07861320e619532068392ebb"
22+
"sha512=921e86bca062e70d27acd2d7e7b2a4c383f31ecae09f711f77878d81beeb8f7082bc4476cc62ece21e3884b3d28547e1e9360b4949038491275c35e28a93f7e5"
23+
]
24+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
opam-version: "2.0"
2+
synopsis: "A minimal OCaml library for type-safe HTTP/JSON RPCs"
3+
maintainer: "[email protected]"
4+
authors: ["Nomadic Labs" "Ocamlpro"]
5+
license: "MIT"
6+
homepage: "https://gitlab.com/nomadic-labs/resto"
7+
bug-reports: "https://gitlab.com/nomadic-labs/resto/issues"
8+
depends: [
9+
"ocaml" {>= "4.10"}
10+
"dune" {>= "1.11"}
11+
"resto" {= version}
12+
"json-data-encoding" {>= "0.9.1" & < "1.0"}
13+
"json-data-encoding-bson" {>= "0.9.1" & < "1.0"}
14+
]
15+
build: ["dune" "build" "-p" name "-j" jobs]
16+
dev-repo: "git+https://gitlab.com/nomadic-labs/resto"
17+
url {
18+
src:
19+
"https://gitlab.com/nomadic-labs/resto/-/archive/v1.1/resto-v1.1.tar.gz"
20+
checksum: [
21+
"md5=d8a6024e07861320e619532068392ebb"
22+
"sha512=921e86bca062e70d27acd2d7e7b2a4c383f31ecae09f711f77878d81beeb8f7082bc4476cc62ece21e3884b3d28547e1e9360b4949038491275c35e28a93f7e5"
23+
]
24+
}

packages/resto/resto.1.1/opam

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
opam-version: "2.0"
2+
synopsis: "A minimal OCaml library for type-safe HTTP/JSON RPCs"
3+
maintainer: "[email protected]"
4+
authors: ["Nomadic Labs" "Ocamlpro"]
5+
license: "MIT"
6+
homepage: "https://gitlab.com/nomadic-labs/resto"
7+
bug-reports: "https://gitlab.com/nomadic-labs/resto/issues"
8+
depends: [
9+
"ocaml" {>= "4.10"}
10+
"dune" {>= "1.11"}
11+
"uri" {>= "1.9.0"}
12+
"json-data-encoding" {>= "0.9.1" & < "1.0" & with-test}
13+
"json-data-encoding-bson" {>= "0.9.1" & < "1.0" & with-test}
14+
"ezjsonm" {with-test}
15+
"lwt" {with-test}
16+
"base-unix" {with-test}
17+
"alcotest" {>= "1.5.0" & with-test}
18+
"alcotest-lwt" {>= "1.5.0" & with-test}
19+
"ocamlformat" {= "0.20.1" & with-doc}
20+
"odoc" {with-doc}
21+
]
22+
conflicts: [
23+
"result" {< "1.5"}
24+
]
25+
build: ["dune" "build" "-p" name "-j" jobs]
26+
dev-repo: "git+https://gitlab.com/nomadic-labs/resto"
27+
url {
28+
src:
29+
"https://gitlab.com/nomadic-labs/resto/-/archive/v1.1/resto-v1.1.tar.gz"
30+
checksum: [
31+
"md5=d8a6024e07861320e619532068392ebb"
32+
"sha512=921e86bca062e70d27acd2d7e7b2a4c383f31ecae09f711f77878d81beeb8f7082bc4476cc62ece21e3884b3d28547e1e9360b4949038491275c35e28a93f7e5"
33+
]
34+
}

0 commit comments

Comments
 (0)