mirror of
https://github.com/c-cube/linol.git
synced 2025-12-06 11:15:46 -05:00
chore: autogen opam files
This commit is contained in:
parent
4720f60a59
commit
0cb0185797
3 changed files with 114 additions and 43 deletions
58
dune-project
58
dune-project
|
|
@ -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)))
|
||||||
|
|
|
||||||
|
|
@ -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}
|
bug-reports: "https://github.com/c-cube/linol/issues"
|
||||||
]
|
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {>= "2.0"}
|
"dune" {>= "2.0"}
|
||||||
"linol" { = version }
|
|
||||||
"lwt" { >= "5.1" & < "6.0" }
|
|
||||||
"base-unix"
|
|
||||||
"yojson" {>= "1.6"}
|
"yojson" {>= "1.6"}
|
||||||
"ocaml" { >= "4.08" }
|
"linol" {= version}
|
||||||
|
"base-unix"
|
||||||
|
"lwt" {>= "5.1" & < "6.0"}
|
||||||
|
"lsp" {>= "1.17" & < "1.18"}
|
||||||
|
"jsonrpc" {>= "1.17" & < "1.18"}
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
]
|
]
|
||||||
tags: [ "lsp" "server" "lwt" "linol" ]
|
build: [
|
||||||
bug-reports: "https://github.com/c-cube/linol/issues"
|
["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"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
32
linol.opam
32
linol.opam
|
|
@ -1,15 +1,11 @@
|
||||||
|
# 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}
|
bug-reports: "https://github.com/c-cube/linol/issues"
|
||||||
]
|
|
||||||
depends: [
|
depends: [
|
||||||
"dune" {>= "2.0"}
|
"dune" {>= "2.0"}
|
||||||
"yojson" {>= "1.6"}
|
"yojson" {>= "1.6"}
|
||||||
|
|
@ -20,8 +16,18 @@ depends: [
|
||||||
"ocaml" {>= "4.14"}
|
"ocaml" {>= "4.14"}
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
]
|
]
|
||||||
tags: [ "lsp" "server" "lwt" ]
|
build: [
|
||||||
bug-reports: "https://github.com/c-cube/linol/issues"
|
["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"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue