Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standards #4

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions LIBRARIES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Libraries we use

We describe the correct library (or libraries) to use for common tasks, and the
ones we choose to use in our project. Other libraries can be considered on a
case-by-case basis.

# Benchmarks

* `tasty-bench`

# Data structures

* `acc`
* `bytestring`
* `containers`
* `vector`

# Effects

* `mtl`
* `transformers`

# JSON

* `aeson` (sigh)

# Optics

* `optics-core`
* `optics-extra`

# Prettyprinting

* `prettyprinter`

# Testing

* `QuickCheck`
* `quickcheck-classes`
* `quickcheck-instances`
* `tasty`
* `tasty-expected-failure`
* `tasty-hunit`
* `tasty-laws`
* `tasty-quickcheck`
30 changes: 28 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,28 @@
# covenant
IR for Cardano scripts
# Covenant

# What is this?

# How do I use this?

# What do I need?

Our policy is to support the latest three GHC versions. At this time, they are:

* 9.6.6
* 9.8.4
* 9.10.1

Covenant is developed using the lowest version listed exclusively, but
compatibility with higher versions listed above is assured by our CI. We support
only [Tier 1
platforms](https://gitlab.haskell.org/ghc/ghc/-/wikis/platforms#tier-1-platforms).

# License

Covenant is licensed under Apache 2.0. Please see the `LICENSE` file for more
information.

# References

* [Catalyst proposal for
Covenant](https://projectcatalyst.io/funds/13/f13-cardano-open-developers/mlabs-static-analysis-with-covenant)
Loading