this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Functionality for time-based finite state machine" 4description: """ 5 6State Dimension Logic is a package that provides functionality for storing data about a robot in a single place (finite state machine). 7It allows you to more safely and systematcally organize and access the data. 8 9Notably, while it's intended use is robotics, it can also be used for any project where similar logic is happening tick by tick. 10 11For a full description, visit https://github.com/zevbo/StateDimensionLogic/blob/main/README.md 12""" 13maintainer: ["Zev Minsky-Primus <zevminskyprimus@gmail.com>"] 14authors: ["Zev Minsky-Primus <zevminskypimus@gmail.com>"] 15license: "MIT" 16homepage: "https://github.com/zevbo/StateDimensionLogic" 17bug-reports: "https://github.com/zevbo/StateDimensionLogic/issues" 18depends: [ 19 "dune" {>= "2.7"} 20 "core" {>= "v0.14.1" & < "v0.15"} 21 "ppx_jane" {>= "v0.14.0" & < "v0.15"} 22 "ounit2" {with-test & >= "2.2.4"} 23 "odoc" {with-doc} 24] 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@runtest" {with-test} 36 "@doc" {with-doc} 37 ] 38] 39url { 40 src: 41 "https://github.com/zevbo/StateDimensionLogic/archive/refs/tags/v0.1.tar.gz" 42 checksum: [ 43 "sha256=df109b5ee94bc5a4dc4de79912352ada8ffda0fa1262481a0b67c5a4f9532775" 44 "md5=cef421463812029621beb6c8c521b40d" 45 ] 46} 47dev-repo: "git+https://github.com/zevbo/RobotState"