summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Release serde_dhall version 0.7.1Nadrieril2020-10-165-5/+9
|
* chore: use latest libtest-mimicNadrieril2020-10-162-653/+650
|
* feat: Add a `Display` impl for `SimpleType`Nadrieril2020-10-162-0/+23
| | | | Fixes https://github.com/Nadrieril/dhall-rust/issues/179
* fix: `format_strings` is a nightly-only rustfmt optionNadrieril2020-10-161-1/+1
|
* chore: update version of dhall-haskell in nix-shellNadrieril2020-10-162-5/+5
|
* Merge pull request #178 from basile-henry/optional-reqwestNadrieril2020-10-122-2/+9
|\ | | | | Make reqwest an optional dependency
| * Make reqwest an optional dependencyBasile Henry2020-10-102-2/+9
|/ | | | | | | | | This adds a feature to the Cargo.toml to be able to control if dhall depends on reqwest. This makes it possible to build dhall-rust for any arch (not just wasm32) without depending on reqwest. To disable reqwest as a dependency, we can now use `default-features = false` when adding the dhall dependency. Closes #169
* Release serde_dhall version 0.7.0Nadrieril2020-09-155-5/+8
|
* Release dhall version 0.7.0Nadrieril2020-09-154-5/+5
|
* Merge pull request #176 from Nadrieril/catchup-specNadrieril2020-09-1518-32/+83
|\
| * spec!: support Dhall v18.0.0Nadrieril2020-09-143-3/+2
| |
| * spec: Enable `with` optimizationsNadrieril2020-09-1417-31/+81
| |
| * spec: update to 17.1.0Nadrieril2020-09-143-1/+3
|/
* fix: fix Cargo.toml for publicationNadrieril2020-08-051-0/+1
|
* Release serde_dhall version 0.6.0Nadrieril2020-08-055-5/+8
|
* Release dhall version 0.6.0Nadrieril2020-08-054-5/+5
|
* Merge pull request #172 from Nadrieril/trailing-delimsNadrieril2020-06-2527-6/+52
|\ | | | | Allow trailing delimiters
| * spec: allow trailing delimitersNadrieril2020-06-2527-6/+52
|/
* test: mark excluded tests as ignored instead of deleting themNadrieril2020-06-251-11/+6
|
* Merge pull request #171 from Nadrieril/catchup-specNadrieril2020-06-2566-231/+254
|\
| * fix: always set XDG_CACHE_HOME in tests.Nadrieril2020-06-251-10/+11
| | | | | | | | | | | | We do NOT want to write in real directories during tests, but it's even worse if it's the user's directory. We really need a non-stupid cache abstraction.
| * fix: exclude prelude test for nowNadrieril2020-06-251-1/+3
| | | | | | | | | | It's broken because cached imports get alpha-normalized. Those tests should be run with a dummy cache.
| * fix: ignore a test on WindowsNadrieril2020-06-251-0/+1
| |
| * spec: support Dhall v17.0.0Nadrieril2020-06-2518-6/+97
| |
| * spec!: remove Optional/build and Optional/foldNadrieril2020-06-258-48/+29
| |
| * chore: garbage collect removed testsNadrieril2020-06-253-12/+0
| |
| * spec: remove Unicode character from `dhall.abnf`Nadrieril2020-06-253-2/+1
| |
| * spec!: remove the ability to quote paths in URLsNadrieril2020-06-257-15/+16
| |
| * spec: ensure `keyword` rule only matches keywordsNadrieril2020-06-2512-12/+14
| |
| * spec: not all ABNF parsers like empty rulesNadrieril2020-06-255-45/+22
| |
| * spec: allow quoted labels to be emptyNadrieril2020-06-257-3/+8
| |
| * spec: support Dhall v16.0.0Nadrieril2020-06-253-4/+2
| |
| * spec: update encoding of floating point values to RFC7049bisNadrieril2020-06-256-12/+7
| |
| * spec: allow unions with mixed kindsNadrieril2020-06-2511-58/+6
| |
| * spec: fix precedence of `===` and `with`Nadrieril2020-06-2516-14/+48
|/
* test: catch panics in test harnessNadrieril2020-06-251-7/+21
|
* fix: update version_numbers testNadrieril2020-06-251-2/+2
|
* doc: extract changelog to its own fileNadrieril2020-06-253-72/+73
|
* doc: mention new commit convention in READMENadrieril2020-06-251-0/+10
|
* doc: tweak README styleNadrieril2020-06-251-9/+9
|
* doc: update README after implementing import cachingNadrieril2020-06-251-1/+2
|
* Merge pull request #170 from Nadrieril/custom-harnessNadrieril2020-06-259-740/+1014
|\
| * doc: update changelogNadrieril2020-06-251-0/+2
| |
| * ci: run tests on windowsNadrieril2020-06-252-17/+29
| |
| * test: use errors instead of panics to signify test failureNadrieril2020-06-244-106/+124
| |
| * docs: recommend `-q` flag when testingNadrieril2020-06-241-1/+1
| |
| * refactor: remove old test harnessNadrieril2020-06-244-710/+16
| |
| * refactor: refactor spec tests a bitNadrieril2020-06-241-189/+177
| |
| * test: write custom test harness for testsNadrieril2020-06-244-2/+950
|/
* fix: panic on remote import on wasmNadrieril2020-06-243-38/+5
| | | | Sadly we would need proper async support for that to work