utop/utop.opam

42 lines
1.1 KiB
Plaintext
Raw Normal View History

# This file is generated by dune, edit dune-project instead
2019-01-14 18:53:10 +00:00
opam-version: "2.0"
synopsis: "Universal toplevel for OCaml"
description:
"utop is an improved toplevel (i.e., Read-Eval-Print Loop or REPL) for OCaml. It can run in a terminal or in Emacs. It supports line edition, history, real-time and context sensitive completion, colors, and more. It integrates with the Tuareg mode in Emacs."
maintainer: ["jeremie@dimino.org"]
authors: ["Jérémie Dimino"]
license: "BSD-3-Clause"
2018-08-20 13:28:10 +00:00
homepage: "https://github.com/ocaml-community/utop"
doc: "https://ocaml-community.github.io/utop/"
bug-reports: "https://github.com/ocaml-community/utop/issues"
2014-05-14 10:35:55 +00:00
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.08.0"}
"base-unix"
"base-threads"
2019-01-14 18:53:10 +00:00
"ocamlfind" {>= "1.7.2"}
2020-05-30 01:34:44 +00:00
"lambda-term" {>= "3.1.0" & < "4.0"}
"logs"
2014-05-14 10:35:55 +00:00
"lwt"
2017-11-06 10:35:25 +00:00
"lwt_react"
"zed" {>= "3.2.0"}
2019-01-14 18:53:10 +00:00
"react" {>= "1.0.0"}
"cppo" {>= "1.1.2"}
2023-06-23 12:28:14 +00:00
"alcotest" {with-test}
2014-05-14 10:35:55 +00:00
]
2019-01-14 18:53:10 +00:00
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
2019-01-14 18:53:10 +00:00
]
dev-repo: "git+https://github.com/ocaml-community/utop.git"