NXT 0.2.0 → 0.2.1
raw patch · 1 files changed
+11/−9 lines, 1 filesdep ~NXT
Dependency ranges changed: NXT
Files
- NXT.cabal +11/−9
NXT.cabal view
@@ -1,12 +1,12 @@ Name: NXT -Version: 0.2.0 +Version: 0.2.1 Synopsis: A Haskell interface to Lego Mindstorms NXT Description: A Haskell interface to Lego Mindstorms NXT over Bluetoooth. It supports direct commands, messages and many sensors (also unofficial). It has also support for a simple message-based control of a NXT brick via remotely executed program (basic NXC code included). . - It contains two simple programs: @nxt-upload@ for uploading files to a NXT brick and @nxt-shutdown@ for - remote shutdown of a NXT brick. + It contains three simple programs: @nxt-upload@ for uploading files to a NXT brick, @nxt-status@ for displaying + a NXT brick status, and @nxt-shutdown@ for remote shutdown of a NXT brick. . It works on Linux, Mac OS X and Windows. . @@ -20,11 +20,13 @@ Category: Robotics Build-type: Simple Cabal-version: >= 1.10 -Stability: experimental +Stability: provisional Homepage: http://mitar.tnode.com Extra-source-files: remote/remote.rxe, remote/remote.nxc, - ffi/blue.h + ffi/blue.h, + tests/Main.hs, + tests/Robotics/NXT/Basic.hs Library Exposed-modules: Robotics.NXT, @@ -67,7 +69,7 @@ HS-source-dirs: src Build-depends: base >= 4.3 && < 5, mtl >= 1.1 && < 3, - NXT == 0.2.0 + NXT == 0.2.1 GHC-options: -Wall Default-language: Haskell2010 @@ -76,7 +78,7 @@ HS-source-dirs: src Build-depends: base >= 4.3 && < 5, mtl >= 1.1 && < 3, - NXT == 0.2.0 + NXT == 0.2.1 GHC-options: -Wall Default-language: Haskell2010 @@ -87,7 +89,7 @@ mtl >= 1.1 && < 3, bytestring >= 0.9 && < 1, filepath >= 1.1 && < 2, - NXT == 0.2.0 + NXT == 0.2.1 GHC-options: -Wall Default-language: Haskell2010 @@ -104,7 +106,7 @@ time >= 1.2 && < 2, bytestring >= 0.9 && < 1.0, filepath >= 1.2 && < 2, - NXT == 0.2.0 + NXT == 0.2.1 GHC-options: -Wall -rtsopts Default-language: Haskell2010 HS-source-dirs: tests