summaryrefslogtreecommitdiff
path: root/serde_dhall/src/options (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-05-08inject_types -> with_builtin_typessubstitutionsstuebinm1-3/+3
at request of Nadrieril.
2021-05-02substitute_names -> inject_typesstuebinm1-7/+30
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!
2021-05-01remove forgotten printlnstuebinm1-1/+0
2021-04-10substitutions: add documentationstuebinm1-0/+37
2021-04-10add type substitutions to serde_dhallstuebinm1-2/+28
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
2020-12-18chore: convert doc links to intra-doc linksNadrieril2-48/+36
2020-12-07Unify `skip_resolve_expr` with normal resolutionNadrieril1-1/+1
2020-12-07Thread cx everywhere else imports are readNadrieril1-0/+1
2020-12-07Thread cx through normalizationNadrieril1-19/+21
2020-12-07Don't store internal structures of `dhall` in `serde_dhall`Nadrieril1-4/+7
2020-11-20Expose binary parsing in the APINadrieril1-0/+41
2020-10-28Fix clippy and formattingNadrieril1-1/+1
2020-10-28Add missing documentationNadrieril1-0/+184
2020-10-28Make type annotation optional to allow serializing SimpleValueNadrieril3-55/+49
2020-10-28Implement serializationNadrieril3-0/+441