-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate juvix.yaml to Package.juvix (#89)
This PR migrates the `juvix.yaml` files for the stdlib and its test package. * Part of anoma/juvix#2487
- Loading branch information
1 parent
2bc3b8b
commit f68b061
Showing
5 changed files
with
25 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module Package; | ||
|
||
import PackageDescription.V1 open; | ||
|
||
package : Package := | ||
defaultPackage | ||
{name := "stdlib"; | ||
version := mkVersion 0 0 1; | ||
dependencies := []}; |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module Package; | ||
|
||
import PackageDescription.V1 open; | ||
|
||
package : Package := | ||
defaultPackage | ||
{name := "stdlib-test"; | ||
dependencies := [ path "../" | ||
; github | ||
"anoma" | ||
"juvix-quickcheck" | ||
"45981b666b67f8ceb7e01ff2b518165efc08f70c" | ||
]}; |
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 was deleted.
Oops, something went wrong.