summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* inject_types -> with_builtin_typessubstitutionsstuebinm2021-05-082-13/+13
| | | | at request of Nadrieril.
* substitute_names -> inject_typesstuebinm2021-05-022-9/+98
| | | | | | | | | | | | This does three things: 1. rename the substitute_names function into inject_types, and makes it accept anything that implements IntoIterator instead of just HashMaps 2. adds an extra function to inject just a single type 3. makes these functions chainable; before, each call to substitute_names would discard previous invocations. However, this currently comes at the cost of a lot of ugly copying. also, more tests!
* remove forgotten printlnstuebinm2021-05-011-1/+0
|
* substitutions: add test to serde.rsstuebinm2021-04-261-0/+21
|
* substitutions: add documentationstuebinm2021-04-101-0/+37
|
* add type substitutions to serde_dhallstuebinm2021-04-103-2/+46
| | | | | | | | | | | | | | | | | | | | | | | | this adds subsititutions, which work similar to the `Dhall.substitutions` mechanism of the Haskell dhall package, and which can be used e.g. like this: ```rust serde_dhall.from_str(...) .substitute_names(hashmap!["Newtype" => static_type]) .parse::<SimpleType>()? ``` The idea behind this is to make it easy to add programmer-defined types which may be used in configs for programs, without forcing the program's users to re-import the same type definitions each time (or the programmers to keep the dhall-based definitions in sync with their rust types, since these are now generated automatically). Caveats so far: - makes some of the code ugly (dhall internals are now used in serde_dhall/src/lib.rs, for example) - haven't tested error messages so far - some unecessary copying of strings and static type values
* release: serde_dhall version 0.10.1Nadrieril2021-04-035-5/+8
|
* release: dhall_proc_macros version 0.5.1Nadrieril2021-04-034-4/+4
|
* release: dhall version 0.10.1Nadrieril2021-04-034-4/+4
|
* ci: give up on clippyNadrieril2021-04-031-20/+21
|
* ci: maybe this will finally fix clippy?Nadrieril2021-04-031-1/+1
|
* clippy: ignore unknown lintsNadrieril2021-04-031-1/+2
|
* ci: more clippy fixesNadrieril2021-04-032-2/+2
|
* ci: disable coverage in a way that passesNadrieril2021-04-031-89/+91
|
* clippy: fix lint nameNadrieril2021-04-031-1/+1
|
* ci: pin clippy versionNadrieril2021-04-031-0/+2
|
* clippy: ignore upper_case_acronymsNadrieril2021-04-031-2/+3
|
* fix: fix formattingNadrieril2021-04-031-1/+1
|
* Merge pull request #215 from cstorey/remove-redundant-semicolonsNadrieril2021-04-038-28/+42
|\
| * Ignore clippy's needless question mark lint for the ast visitor macros.Ceri Storey2021-04-031-1/+2
| |
| * Avoid ambiguity from use of Itertools::intersperse.Ceri Storey2021-04-032-6/+5
| |
| * Replace a bunch of Err(…)? and format!("constant") calls.Ceri Storey2021-03-273-18/+32
| |
| * Remove a redundant semicolon in a test for good measure.Ceri Storey2021-03-271-2/+2
| |
| * Remove redundant semicolons in derived StaticType implementation.Ceri Storey2021-03-271-1/+1
|/
* fix: don't use `Option` to signal errorsNadrieril2021-03-091-24/+31
|
* chore: fix clippy warningsNadrieril2021-03-092-0/+2
|
* release: serde_dhall version 0.10.0Nadrieril2021-02-045-5/+8
|
* spec: support dhall v20Nadrieril2021-02-043-1/+3
|
* release: dhall version 0.10.0Nadrieril2021-02-044-4/+4
|
* Merge pull request #211 from Qeenon/mawaNadrieril2021-01-251-1/+1
|\ | | | | fixes #210 avoid possible conflicts by not using AsRef trait
| * fixes #210 avoid possible conflicts by not using AsRef traitQeenon2021-01-251-1/+1
|/
* Merge pull request #209 from Nadrieril/fix-ciNadrieril2021-01-226-99/+100
|\
| * update: bump minimum supported version because of tokioNadrieril2021-01-223-2/+4
| |
| * ci: disable code coverage, can't make it workNadrieril2021-01-221-89/+90
| |
| * chore: fix clippy warningsNadrieril2021-01-222-8/+6
|/
* doc: document the `dhall` usage testNadrieril2021-01-222-5/+18
|
* test: try using the `dhall` crate as a userNadrieril2021-01-221-0/+38
|
* chore: update reqwest dependencyNadrieril2021-01-082-148/+78
| | | | Fixes #206
* chore: convert doc links to intra-doc linksNadrieril2020-12-186-67/+52
|
* Merge pull request #205 from Nadrieril/auditsNadrieril2020-12-181-0/+16
|\ | | | | Enable automatic audit checks in CI
| * ci: enable automatic audit checksNadrieril2020-12-181-0/+16
|/
* chore: update dependenciesNadrieril2020-12-181-154/+172
|
* tweak: factor a bitNadrieril2020-12-081-24/+25
|
* tests: add a test that fetches the remote preludeNadrieril2020-12-081-1/+17
| | | | It's too slow even in release mode.
* fix: fix import ordering issueNadrieril2020-12-083-7/+10
|
* Merge pull request #204 from Nadrieril/source-idNadrieril2020-12-0826-637/+1187
|\
| * Soothe clippyNadrieril2020-12-071-0/+1
| |
| * Resolve imports and alternatives outside of the ast traversalNadrieril2020-12-076-130/+294
| |
| * Defer name errors to typecheckingNadrieril2020-12-074-5/+13
| | | | | | | | We aren't supposed to inspect anything before alternatives are chosen
| * Avoid storing an import before we checked its hashNadrieril2020-12-072-23/+28
| |