diff options
author | Vincent Ambo <mail@tazj.in> | 2023-01-10T11·52+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-01-12T10·42+0000 |
commit | 02d35e4aa6ef84cdbd01d881bdc5c1acd50fc7dc (patch) | |
tree | 86e4a57d551e8c47debbc703d3db3ac106677a22 /tvix/eval/src/value/list.rs | |
parent | fc7e52b4acc3f70968d0c063942b106da31eb8aa (diff) |
feat(tvix/eval): implement builtins.toJSON r/5652
Implements `Serialize` for `tvix_eval::Value`. Special care is taken with serialisation of attribute sets, and forcing of thunks. The tests should cover both cases well. Change-Id: I9bb135bacf6f87bc6bd0bd88cef0a42308e6c335 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7803 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/eval/src/value/list.rs')
-rw-r--r-- | tvix/eval/src/value/list.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/eval/src/value/list.rs b/tvix/eval/src/value/list.rs index 744130d2ac48..70952419abea 100644 --- a/tvix/eval/src/value/list.rs +++ b/tvix/eval/src/value/list.rs @@ -3,7 +3,7 @@ use std::ops::Index; use imbl::{vector, Vector}; -use serde::Deserialize; +use serde::{Deserialize, Serialize}; use crate::errors::ErrorKind; use crate::vm::VM; @@ -13,7 +13,7 @@ use super::TotalDisplay; use super::Value; #[repr(transparent)] -#[derive(Clone, Debug, Deserialize)] +#[derive(Clone, Debug, Deserialize, Serialize)] pub struct NixList(Vector<Value>); impl TotalDisplay for NixList { |