this repo has no description

Merge pull request #20396 from zevbo/add-pkg-sd_logic

add packge sd_logic

Kate 5486d028 423ce258

Changed files
+43
packages
sd_logic
sd_logic.0.1
+43
packages/sd_logic/sd_logic.0.1/opam
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Functionality for time-based finite state machine"
+
description: """
+
+
State Dimension Logic is a package that provides functionality for storing data about a robot in a single place (finite state machine).
+
It allows you to more safely and systematcally organize and access the data.
+
+
Notably, while it's intended use is robotics, it can also be used for any project where similar logic is happening tick by tick.
+
+
For a full description, visit https://github.com/zevbo/StateDimensionLogic/blob/main/README.md
+
"""
+
maintainer: ["Zev Minsky-Primus <zevminskyprimus@gmail.com>"]
+
authors: ["Zev Minsky-Primus <zevminskypimus@gmail.com>"]
+
license: "MIT"
+
homepage: "https://github.com/zevbo/StateDimensionLogic"
+
bug-reports: "https://github.com/zevbo/StateDimensionLogic/issues"
+
depends: [
+
"dune" {>= "2.7"}
+
"core" {>= "v0.14.1"}
+
"ppx_jane" {>= "v0.14.0"}
+
"ounit2" {with-test & >= "2.2.4"}
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
]
+
url {
+
src: "https://github.com/zevbo/StateDimensionLogic/archive/refs/tags/v0.1.tar.gz"
+
checksum: "md5=cef421463812029621beb6c8c521b40d"
+
}
+
dev-repo: "git+https://github.com/zevbo/RobotState"