summaryrefslogtreecommitdiff
path: root/serde_dhall/src/lib.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Release serde_dhall version 0.5.2Nadrieril2020-04-121-1/+1
|
* Release serde_dhall version 0.5.1Nadrieril2020-04-091-1/+1
|
* Fix cargo-release substitutionsNadrieril2020-04-051-1/+1
|
* Final doc tweaksNadrieril2020-04-051-2/+2
|
* Rewrite builder with state machine to allow parse::<>Nadrieril2020-04-051-9/+15
|
* Make Deserializer functions the only functionsNadrieril2020-04-051-15/+10
|
* Rename Deserialize trait to FromDhallNadrieril2020-04-051-1/+1
|
* More docNadrieril2020-03-311-58/+44
|
* Hide serde Error internalsNadrieril2020-03-311-0/+1
|
* Go mad with doc macrosNadrieril2020-03-311-1/+4
|
* Move mod simple into valueNadrieril2020-03-311-4/+1
|
* Hide Value from APINadrieril2020-03-311-2/+2
|
* Rework SimpleTypeNadrieril2020-03-311-6/+6
|
* Hide SimpleValue from apiNadrieril2020-03-311-2/+2
|
* Add a bunch of TODOsNadrieril2020-03-311-3/+2
|
* Reorganize API and internals of serde_dhall a bitNadrieril2020-03-311-62/+18
|
* Test README code samples using doc_commentNadrieril2020-03-311-0/+3
|
* Introduce option builderNadrieril2020-03-311-11/+5
|
* Expose simple::Val/Ty properly in the APINadrieril2020-03-311-15/+16
|
* Move Value, SimpleValue and SimpleType to serdeNadrieril2020-03-311-4/+5
|
* Reorganize serde modulesNadrieril2020-03-311-201/+63
|
* Use dhall::Value more in serdeNadrieril2020-03-311-33/+32
|
* Remove Normalized and friends from public APINadrieril2020-03-311-1/+1
|
* Add new Value type in APINadrieril2020-03-311-25/+22
|
* Add SimpleType to mirror SimpleValueNadrieril2020-03-311-30/+31
|
* Split serde_dhall::Value to separate values from typesNadrieril2020-03-311-24/+62
|
* Add SimpleValue type to facilitate deserializationNadrieril2020-03-311-6/+11
|
* Cut releaseNadrieril2020-03-181-1/+1
|
* Cut releaseNadrieril2020-02-211-1/+1
|
* More errorsNadrieril2020-02-021-1/+1
|
* Fix module paths in serde_dhallNadrieril2020-01-311-1/+1
|
* Use Normalized in serde_dhallNadrieril2020-01-291-11/+11
|
* releaseNadrieril2020-01-161-1/+1
|
* Deserialize more typesNadrieril2020-01-161-0/+22
|
* Improve serde_dhall docs greatlyNadrieril2020-01-161-50/+86
|
* Release new versionNadrieril2019-12-241-1/+1
|
* Prepare for publishing on crates.ioNadrieril2019-12-211-0/+1
|
* Seal `Deserialize` traitNadrieril2019-12-201-2/+7
| | | | Fixes #81
* Move error module to root of crateNadrieril2019-12-201-2/+2
|
* Refer to semantics module properlyNadrieril2019-12-151-3/+3
|
* Reexport dhall_syntax as a module in dhallNadrieril2019-12-151-1/+1
|
* Update rust toolchainNadrieril2019-11-111-2/+0
|
* Cleanup conversion of `Value` to `Expr`Nadrieril2019-08-301-1/+1
|
* Rename SubExpr to Expr, and Expr to RawExprNadrieril2019-08-281-2/+2
| | | | For clarity, and consistency with Value
* Move type construction fns from serde_dhall to dhallNadrieril2019-08-201-26/+6
|
* Introduce a new enum to store either a Value or a ValueFNadrieril2019-08-201-2/+6
|
* Naming tweaksNadrieril2019-08-201-4/+2
|
* Merge TypedValue and ValueNadrieril2019-08-191-18/+13
|
* Reduce untyped construction of ValuesNadrieril2019-08-191-7/+2
|
* Use TypedValue instead of Typed in normalize and typecheckNadrieril2019-08-191-5/+5
| | | | | Now Typed is only used in dhall::phase, similarly to Parsed/Resolved/Normalized