diff options
author | Nadrieril | 2020-11-01 16:10:00 +0000 |
---|---|---|
committer | Nadrieril | 2020-11-01 17:36:49 +0000 |
commit | 66ea301fc25a07485286560c434a9fdaf460c431 (patch) | |
tree | a0bc78be155be39e3da0ad5f61d7255057f8747a /dhall/src/syntax/text | |
parent | 2c245e7f5ce4019381e0fa47a1e2caf6276106be (diff) |
Untangle caching code
Diffstat (limited to 'dhall/src/syntax/text')
-rw-r--r-- | dhall/src/syntax/text/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dhall/src/syntax/text/parser.rs b/dhall/src/syntax/text/parser.rs index 37f28e5..07921b5 100644 --- a/dhall/src/syntax/text/parser.rs +++ b/dhall/src/syntax/text/parser.rs @@ -593,7 +593,7 @@ impl DhallParser { input.error(format!("Unknown hashing protocol '{}'", protocol)) ); } - Ok(Hash::SHA256(hex::decode(hash).unwrap())) + Ok(Hash::SHA256(hex::decode(hash).unwrap().into())) } fn import_hashed( |