diff options
author | Profpatsch <mail@profpatsch.de> | 2021-01-02T16·08+0100 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2021-01-03T16·29+0000 |
commit | 27a73171cf97c24c7785787eb7661405334329de (patch) | |
tree | 1ef181be663c0eb2b96c7c4320271a928ca46a23 /users/Profpatsch/netencode/netencode.rs | |
parent | f1c38e25600d4b61b84a5cdba1c7c9a28cc742a7 (diff) |
feat(Profpatsch/netencode): add netencode-mustache r/2058
A little executable, combining the netencode and mustache libraries to make easy templating from the command line possible. Combined with the nix netencode generators, it’s now trivial to populate a mustache template with (nearly) arbitrary data. Yay. Change-Id: I5b892c38fbc33dd826a26174dd9567f0b72e6322 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2320 Reviewed-by: Profpatsch <mail@profpatsch.de> Tested-by: BuildkiteCI
Diffstat (limited to 'users/Profpatsch/netencode/netencode.rs')
-rw-r--r-- | users/Profpatsch/netencode/netencode.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/Profpatsch/netencode/netencode.rs b/users/Profpatsch/netencode/netencode.rs index 57b0a094931c..9c999a7cbb51 100644 --- a/users/Profpatsch/netencode/netencode.rs +++ b/users/Profpatsch/netencode/netencode.rs @@ -338,7 +338,7 @@ pub mod parse { ))(s) } - fn t_t(s: &[u8]) -> IResult<&[u8], T> { + pub fn t_t(s: &[u8]) -> IResult<&[u8], T> { alt(( text, binary(), |