Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make reqwest an optional dependency | Basile Henry | 2020-10-10 | 1 | -1/+5 |
| | | | | | | | | | 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 | ||||
* | spec: Enable `with` optimizations | Nadrieril | 2020-09-14 | 1 | -2/+30 |
| | |||||
* | fix: panic on remote import on wasm | Nadrieril | 2020-06-24 | 1 | -4/+2 |
| | | | | Sadly we would need proper async support for that to work | ||||
* | Refactor cache path resolution | Nadrieril | 2020-05-30 | 1 | -62/+21 |
| | |||||
* | Fix cache path resolution on wasm | Nadrieril | 2020-05-30 | 1 | -0/+7 |
| | |||||
* | Make reqwest build on wasm | Nadrieril | 2020-05-30 | 1 | -3/+13 |
| | |||||
* | test: Add remaining tests for cache | fteychene | 2020-05-15 | 1 | -0/+398 |
| | |||||
* | fixup! test: Add some unit tests for cache | fteychene | 2020-05-15 | 1 | -30/+55 |
| | |||||
* | fixup! test: Add some unit tests for cache | fteychene | 2020-05-15 | 1 | -56/+32 |
| | |||||
* | fixup! fixup! Release serde_dhall version 0.5.2 | fteychene | 2020-05-15 | 1 | -31/+55 |
| | |||||
* | test: Add some unit tests for cache | fteychene | 2020-05-15 | 1 | -12/+121 |
| | |||||
* | fixup! Release serde_dhall version 0.5.2 | fteychene | 2020-05-15 | 2 | -54/+67 |
| | |||||
* | feat: Add cache resolution on resolve | fteychene | 2020-05-15 | 3 | -28/+182 |
| | |||||
* | Move duplicate field checking to parser | Nadrieril | 2020-04-07 | 1 | -2/+2 |
| | |||||
* | Move BinOp and Builtin definitions in the relevant module | Nadrieril | 2020-04-06 | 1 | -3/+4 |
| | |||||
* | Extract operation-related code to a new module | Nadrieril | 2020-04-06 | 1 | -1/+2 |
| | |||||
* | Split off operations from main expr enum | Nadrieril | 2020-04-06 | 1 | -10/+11 |
| | |||||
* | Fix import bug | Nadrieril | 2020-04-05 | 1 | -9/+11 |
| | |||||
* | Check code hashes in import | Nadrieril | 2020-04-05 | 2 | -9/+38 |
| | |||||
* | Fix clippy warnings | Nadrieril | 2020-04-05 | 1 | -7/+4 |
| | |||||
* | Reorganize API and internals of serde_dhall a bit | Nadrieril | 2020-03-31 | 1 | -1/+1 |
| | |||||
* | Introduce option builder | Nadrieril | 2020-03-31 | 1 | -2/+8 |
| | |||||
* | Brutally make all of dhall pub | Nadrieril | 2020-03-31 | 4 | -16/+16 |
| | |||||
* | Nir::normalize isn't useful | Nadrieril | 2020-03-31 | 1 | -6/+0 |
| | | | | | It pretends to normalize but actually can't normalize under lambdas. The correct way to normalize a Nir is to convert it to Hir. | ||||
* | Remove top-level Expr aliases | Nadrieril | 2020-03-31 | 2 | -11/+7 |
| | |||||
* | Run clippy | Nadrieril | 2020-03-17 | 3 | -15/+15 |
| | |||||
* | Implement conservative sanity checking | Nadrieril | 2020-03-05 | 2 | -56/+76 |
| | |||||
* | Cache imports correctly | Nadrieril | 2020-03-05 | 2 | -19/+19 |
| | |||||
* | Implement remote imports and cleanup import chaining | Nadrieril | 2020-03-05 | 1 | -76/+126 |
| | |||||
* | Implement remote `as Location` resolution | Nadrieril | 2020-03-05 | 1 | -1/+12 |
| | |||||
* | Implement `as Text` imports | Nadrieril | 2020-03-05 | 1 | -1/+20 |
| | |||||
* | Refactor resolve a bit | Nadrieril | 2020-03-05 | 1 | -80/+76 |
| | |||||
* | Implement `missing` and `env:VAR` imports | Nadrieril | 2020-03-05 | 1 | -8/+16 |
| | |||||
* | Implement `as Location` imports | Nadrieril | 2020-03-05 | 2 | -30/+102 |
| | |||||
* | Avoid re-typechecking after import | Nadrieril | 2020-02-19 | 3 | -14/+21 |
| | |||||
* | Discard import headers while we don't use them | Nadrieril | 2020-02-18 | 2 | -11/+8 |
| | |||||
* | Remove useless `normalize` option from ToExprOptions | Nadrieril | 2020-02-18 | 1 | -8/+2 |
| | |||||
* | Borrow relevant Hir from Tir | Nadrieril | 2020-02-18 | 1 | -3/+17 |
| | |||||
* | Rename Value to Nir | Nadrieril | 2020-02-17 | 1 | -3/+3 |
| | |||||
* | Rename TyExpr to Tir | Nadrieril | 2020-02-17 | 1 | -2/+2 |
| | |||||
* | Factor out desugaring from resolve | Nadrieril | 2020-02-17 | 1 | -22/+31 |
| | |||||
* | Extract resolve-relevant envs together | Nadrieril | 2020-02-17 | 3 | -58/+113 |
| | |||||
* | Move hir and resolve into a module | Nadrieril | 2020-02-17 | 4 | -0/+400 |