-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsd_logic.opam
43 lines (40 loc) · 1.33 KB
/
sd_logic.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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 <[email protected]>"]
authors: ["Zev Minsky-Primus <[email protected]>"]
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"