feat(tvix/eval): implement serde::Deserialize for Value
Co-Authored-By: Vincent Ambo <tazjin@tvl.su> Change-Id: Ib6f7d1f4f4faac36b44f5f75cccc57bf912cf606 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7626 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
This commit is contained in:
parent
c011a6130c
commit
805219a2fa
10 changed files with 114 additions and 50 deletions
|
|
@ -14,13 +14,13 @@ builtin-macros = { path = "./builtin-macros", package = "tvix-eval-builtin-macro
|
|||
codemap = "0.1.3"
|
||||
codemap-diagnostic = "0.1.1"
|
||||
dirs = "4.0.0"
|
||||
imbl = "2.0"
|
||||
imbl = { version = "2.0", features = [ "serde" ] }
|
||||
path-clean = "0.1"
|
||||
proptest = { version = "1.0.0", default_features = false, features = ["std", "alloc", "break-dead-code", "tempfile"], optional = true }
|
||||
regex = "1.6.0"
|
||||
rnix = "0.11.0"
|
||||
rowan = "*" # pinned by rnix
|
||||
serde = "1.0"
|
||||
serde = { version = "1.0", features = [ "rc", "derive" ] }
|
||||
serde_json = "1.0"
|
||||
smol_str = "0.1"
|
||||
tabwriter = "1.2"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue