diff options
author | Vincent Ambo <mail@tazj.in> | 2022-09-18T16·23+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-18T16·40+0000 |
commit | bb47baf638c96d133dae51827ff676166d818153 (patch) | |
tree | 6f22d62769d8c75ff2885912fea00eeecffffbdd /corp/tvixbolt/Cargo.toml | |
parent | 993c22de5990a6522794647522b221f4fde6c770 (diff) |
feat(corp/tvixbolt): persist state in tvixbolt's URL r/4900
This makes it possible to enter something into tvixbolt and then share the link with someone else. Suggested by Profpatsch originally. Change-Id: I9886e76a7b821070f13ea7005df09188821e091d Reviewed-on: https://cl.tvl.fyi/c/depot/+/6636 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'corp/tvixbolt/Cargo.toml')
-rw-r--r-- | corp/tvixbolt/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/corp/tvixbolt/Cargo.toml b/corp/tvixbolt/Cargo.toml index 57eea8e1260a..fc7cedfd5846 100644 --- a/corp/tvixbolt/Cargo.toml +++ b/corp/tvixbolt/Cargo.toml @@ -22,3 +22,7 @@ rev = "7d0d929c22ad27bdcc0779afe445b541d3ce9631" [dependencies.tvix-eval] path = "../../tvix/eval" default-features = false + +[dependencies.serde] +version = "*" # pinned by yew +features = [ "derive" ] |