package forester

  1. Overview
  2. Docs
A tool for tending mathematical forests

Install

Dune Dependency

Authors

Maintainers

Sources

3.1.0.tar.gz
md5=3512b493a31b0d1073ba4e48e8058493
sha512=b6e5ad2f86132d1874cb943546375e2f1b987a0c65628d71f17827f1ff7435df476c86fb135b34b3ff302f99ea54a21b90730257e12aa41cce170fae57c422b0

Description

Published: 11 Mar 2024

README

README.md

This is the source repository for the forester tool, which is implemented in the OCaml programming language. Please see this page for more information.

System Requirements

You need to have OCaml 5 and opam installed.

Installation

You can install forester by running opam install forester.

Using nix (Optional)

Forester can also be used with nix. To run forester, use nix run sourcehut:~jonsterling/ocaml-forester. If you are working with a Nix flake-based project and want to include Forester as a build input, you can add it to your flake.nix:

{
  inputs = {
    forester.url = "sourcehut:~jonsterling/ocaml-forester";
    forester.inputs.nixpkgs.follows = "nixpkgs";
  };

  outputs = inputs@{ self, forester, nixpkgs }:
    let
      system = "x86_64-linux"; # make sure to change this to your use case!
      pkgs = import nixpkgs { inherit system inputs; };
    in
    {
      devShells.${system}.default = pkgs.mkShell {
        buildInputs = [ forester.packages.${system}.default ];
      };
    };
}

Example Use

Please see my Forest for an example of using forester, or clone your own template forest.

Dependencies (15)

  1. yojson >= "2.1.2"
  2. algaeff >= "2.0.0"
  3. bwd >= "2.3.0"
  4. yuujinchou >= "5.1.0"
  5. asai >= "0.2.0"
  6. ptime >= "1.1.0"
  7. eio_main >= "0.13"
  8. dune-build-info
  9. cmdliner >= "1.2.0"
  10. ppx_deriving
  11. xmlm >= "1.4.0"
  12. dune >= "3.7"
  13. ocaml >= "5.0.0"
  14. ocamlgraph >= "2.1.0"
  15. menhir >= "20211230"

Dev Dependencies (1)

  1. odoc with-doc

Used by

None

Conflicts

None