All Versions
3
Latest Version
Avg Release Cycle
9 days
Latest Release
3034 days ago
Changelog History
Changelog History
-
v0.2.0 Changes
October 26, 2016v0.2.0
๐ Features
- โ Add Haskell Runtime Support to Rust Library
- ๐ Change build.rs script to pull in the base libraries
needed to get the Runtime Working. - ๐ Change structuring of Haskell code so import statements
for modules is:
haskell import Curryrs.Types
and not:
haskell import Types
๐ Documentation
- โก๏ธ Update README with how to properly call Haskell code in
โก๏ธ Rust with the new library updates by calling the Runtime
from within Rust. It also now makes setting up the Haskell
code a lot easier removing the need for header files and
using gcc to get code to work.
โ Testing
- โ
Setup Haskell in Rust tests with C glue code to get it to
work
-
v0.1.1 Changes
October 26, 2016v0.1.1
๐ Features
- ๐ Change FFI Primitives to use fixed width versions in Haskell
and Rust rather than using C types.
๐ Documentation
- ๐ Update README to make documentation clearer to users based
off feedback in issue #1 - โก๏ธ Update README with how to get Haskell into Rust
โ Testing
- โ
Setup Haskell in Rust tests with C glue code to get it to
work
- ๐ Change FFI Primitives to use fixed width versions in Haskell
-
v0.1.0 Changes
October 09, 2016- Establishes a base library containing primitive types between the two languages.
- Includes macros to make FFI of functions easier and readable
- Includes the ability to have it work with stack and cabal