chore: autogen opam files

This commit is contained in:
Simon Cruanes 2024-05-08 11:10:08 -04:00
parent 4720f60a59
commit 0cb0185797
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
3 changed files with 114 additions and 43 deletions

View file

@ -1,4 +1,62 @@
(lang dune 2.0) (lang dune 2.0)
;(implicit_transitive_deps false) ;(implicit_transitive_deps false)
(generate_opam_files true)
(using menhir 2.0) (using menhir 2.0)
(name linol) (name linol)
(version 0.5)
(license MIT)
(authors "Simon Cruanes")
(source
(github c-cube/linol))
(package
(name linol)
(synopsis "LSP server library")
(depends
("yojson"
(>= "1.6"))
"logs"
("trace"
(>= "0.4"))
("lsp"
(and
(>= "1.17")
(< "1.18")))
("jsonrpc"
(and
(>= "1.17")
(< "1.18")))
("ocaml"
(>= "4.14"))
("odoc" :with-doc)))
(package
(name linol-lwt)
(synopsis "LSP server library (with Lwt for concurrency)")
(depends
("yojson"
(>= "1.6"))
("linol"
(= :version))
base-unix
("lwt"
(and
(>= "5.1")
(< "6.0")))
("lsp"
(and
(>= "1.17")
(< "1.18")))
("jsonrpc"
(and
(>= "1.17")
(< "1.18")))
("odoc" :with-doc)))

View file

@ -1,26 +1,33 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.5" version: "0.5"
license: "MIT"
maintainer: "simon.cruanes.2007@m4x.org"
author: "Simon Cruanes"
homepage: "https://github.com/c-cube/linol"
synopsis: "LSP server library (with Lwt for concurrency)" synopsis: "LSP server library (with Lwt for concurrency)"
build: [ authors: ["Simon Cruanes"]
["dune" "build" "@install" "-p" name "-j" jobs] license: "MIT"
["dune" "build" "@runtest" "-p" name "-j" jobs] {with-test} homepage: "https://github.com/c-cube/linol"
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
]
depends: [
"dune" { >= "2.0" }
"linol" { = version }
"lwt" { >= "5.1" & < "6.0" }
"base-unix"
"yojson" { >= "1.6" }
"ocaml" { >= "4.08" }
"odoc" { with-doc }
]
tags: [ "lsp" "server" "lwt" "linol" ]
bug-reports: "https://github.com/c-cube/linol/issues" bug-reports: "https://github.com/c-cube/linol/issues"
depends: [
"dune" {>= "2.0"}
"yojson" {>= "1.6"}
"linol" {= version}
"base-unix"
"lwt" {>= "5.1" & < "6.0"}
"lsp" {>= "1.17" & < "1.18"}
"jsonrpc" {>= "1.17" & < "1.18"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/c-cube/linol.git" dev-repo: "git+https://github.com/c-cube/linol.git"

View file

@ -1,27 +1,33 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.5" version: "0.5"
maintainer: "simon.cruanes.2007@m4x.org"
license: "MIT"
author: "Simon Cruanes"
homepage: "https://github.com/c-cube/linol"
synopsis: "LSP server library" synopsis: "LSP server library"
build: [ authors: ["Simon Cruanes"]
["dune" "build" "@install" "-p" name "-j" jobs] license: "MIT"
["dune" "build" "@runtest" "-p" name "-j" jobs] {with-test} homepage: "https://github.com/c-cube/linol"
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
]
depends: [
"dune" { >= "2.0" }
"yojson" { >= "1.6" }
"logs"
"trace" { >= "0.4" }
"lsp" { >= "1.17" & < "1.18" }
"jsonrpc" { >= "1.17" & < "1.18" }
"ocaml" { >= "4.14" }
"odoc" { with-doc }
]
tags: [ "lsp" "server" "lwt" ]
bug-reports: "https://github.com/c-cube/linol/issues" bug-reports: "https://github.com/c-cube/linol/issues"
depends: [
"dune" {>= "2.0"}
"yojson" {>= "1.6"}
"logs"
"trace" {>= "0.4"}
"lsp" {>= "1.17" & < "1.18"}
"jsonrpc" {>= "1.17" & < "1.18"}
"ocaml" {>= "4.14"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/c-cube/linol.git" dev-repo: "git+https://github.com/c-cube/linol.git"