diff options
| author | Nadrieril Feneanar | 2020-03-18 00:01:11 +0000 |
|---|---|---|
| committer | GitHub | 2020-03-18 00:01:11 +0000 |
| commit | f42ab8acdaa4dee753b7daccfed1ca3c8738095a (patch) | |
| tree | 9fba7dd6d865884c0651af2dd7e01b243a0f25f0 | |
| parent | 71fddc59b5b427f52dd2f0cd76f788eb995a4e2e (diff) | |
| parent | 40441abd2d6c2938244fa1bb2ca26ee9b8e4ab27 (diff) | |
Merge pull request #146 from Nadrieril/never_never
Use stable toolchain 🎉
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | dhall/src/lib.rs | 1 | ||||
| -rw-r--r-- | dhall/src/semantics/nze/normalize.rs | 27 | ||||
| -rw-r--r-- | dhall/src/semantics/tck/typecheck.rs | 4 | ||||
| -rw-r--r-- | dhall/src/syntax/ast/expr.rs | 6 | ||||
| -rw-r--r-- | rust-toolchain | 2 |
6 files changed, 21 insertions, 22 deletions
@@ -34,7 +34,6 @@ official tooling instead; instructions can be found For now, the only supported way of integrating Dhall in your application is via the `serde_dhall` crate, and only parsing is supported. -`serde_dhall` is a nightly crate, and only works with a nightly compiler. Add this to your `Cargo.toml`: ```toml @@ -110,7 +109,7 @@ $ nix-shell -p rustup Once `rustup` is installed we can get it to manage our toolchain by running: ```bash -$ rustup toolchain install nightly +$ rustup toolchain install stable ``` Then we can manage our building and testing with the [`cargo`](https://crates.io/) dependency manager: diff --git a/dhall/src/lib.rs b/dhall/src/lib.rs index d7d7f05..058411c 100644 --- a/dhall/src/lib.rs +++ b/dhall/src/lib.rs @@ -1,5 +1,4 @@ #![doc(html_root_url = "https://docs.rs/dhall/0.3.0")] -#![feature(never_type)] #