diff options
author | Florian Klink <flokli@flokli.de> | 2024-01-11T13·51+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-01-12T22·25+0000 |
commit | 82540717d66a0b0f021763766571fc6c418d2427 (patch) | |
tree | ecd383b14c10a125fdaa79bd7944bfe2890383aa | |
parent | c955560767348e50d36c58e7935cef74514a0c91 (diff) |
feat(tvix/eval): make into_json public r/7375
Allow other crates (like tvix-glue) to look at a Value in JSON, which is used by the structured attrs feature. Change-Id: Iba02ace6e11a74c3f9b19dcbef4b008b76dec046 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10602 Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
-rw-r--r-- | tvix/eval/src/value/json.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/value/json.rs b/tvix/eval/src/value/json.rs index 54b29131109a..fb9750a9fe4a 100644 --- a/tvix/eval/src/value/json.rs +++ b/tvix/eval/src/value/json.rs @@ -12,7 +12,7 @@ use serde_json::Value as Json; // name clash with *our* `Value` use serde_json::{Map, Number}; impl Value { - pub(crate) async fn into_json( + pub async fn into_json( self, co: &GenCo, ) -> Result<Result<Json, CatchableErrorKind>, ErrorKind> { |