about summary refs log tree commit diff
path: root/tvix/serde
diff options
context:
space:
mode:
authorEvgeny Zemtsov <eze@resoptima.com>2023-06-22T12·39+0200
committerezemtsov <eugene.zemtsov@gmail.com>2023-06-22T12·53+0000
commitf32abbdc1a20d019538a1961b827653518630d3a (patch)
treeaadb07e7e02ab95d0a5ea4c4071754ea2aac3e36 /tvix/serde
parent66047063e02be3188a558958de8938c9015c0f89 (diff)
feat(tvix/serde): make from_str_with_config public r/6342
Change-Id: I61962297101d35ed02673edf1bca0584b7be37cf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8845
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/serde')
-rw-r--r--tvix/serde/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/serde/src/lib.rs b/tvix/serde/src/lib.rs
index 41ad23b185..6a44affdc0 100644
--- a/tvix/serde/src/lib.rs
+++ b/tvix/serde/src/lib.rs
@@ -6,6 +6,7 @@ mod de;
 mod error;
 
 pub use de::from_str;
+pub use de::from_str_with_config;
 
 #[cfg(test)]
 mod de_tests;