Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Upgrade code and get it all working once again
This fixes year long issues in regards to linking. It's been frustrating to say the least and was a big reason I let the code bit rot. Given their is a pandemic goin on now and well I got bored I took the time to fix all the code. This moves it into Rust 2018 edition works on a newer version of GHC and overall reformats and cleans up the code with some better libraries. This isn't the state the release will be in, but it's just nice to have all the test suites working again and maybe now I can make some actual progress on creating a good library.
- Loading branch information
Showing
19 changed files
with
514 additions
and
404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -4,7 +4,7 @@ root = true | ||
indent_style = tab | ||
|
||
[*.rs] | ||
indent_style = tab | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.hs] | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -2,6 +2,7 @@ target | ||
Cargo.lock | ||
.stack-work | ||
dist | ||
**/dist-newstyle | ||
*.a | ||
*.so | ||
.cabal-sandbox | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,3 +1 @@ | ||
fn main() { | ||
|
||
} | ||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.