package forester

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

Install

Dune Dependency

Authors

Maintainers

Sources

4.1.0.tar.gz
md5=576a2fe0666a6bd9fbbf9a567c0aee79
sha512=af7666a0bcd8fb20497a8c0a0bc01cb57db0bde07d68952e40d37464efe81c3a3c8207a5e5dc88264a5f67b5815874e88f3aa31972dd5f0413d44f97e11b758e

Description

Published: 17 Jun 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 (18)

  1. uri >= "4.4.0"
  2. repr >= "0.7.0"
  3. toml >= "7.1.0"
  4. yojson >= "2.1.2"
  5. algaeff >= "2.0.0"
  6. bwd >= "2.3.0"
  7. yuujinchou >= "5.2.0"
  8. asai >= "0.3.0"
  9. ptime >= "1.1.0"
  10. eio_main >= "1.1"
  11. uucp >= "15.1.0"
  12. dune-build-info
  13. cmdliner >= "1.2.0"
  14. ppx_deriving
  15. dune >= "3.7"
  16. ocaml >= "5.1.1"
  17. ocamlgraph >= "2.1.0"
  18. menhir >= "20211230"

Dev Dependencies (1)

  1. odoc with-doc

Used by

None

Conflicts

None

OCaml

Innovation. Community. Security.