993c22de59
This will be used to set/get query parameters for making shareable links. Change-Id: I05ccf8cab2521564710523ccd3b25ec26f435dd5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6633 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
24 lines
564 B
TOML
24 lines
564 B
TOML
[package]
|
|
name = "tvixbolt"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
yew = "0.19.3"
|
|
yew-router = "0.16"
|
|
codemap = "0.1.3"
|
|
serde_urlencoded = "*" # pinned by yew
|
|
web-sys = "*" # pinned by yew
|
|
|
|
# needs to be in sync with nixpkgs
|
|
wasm-bindgen = "= 0.2.82"
|
|
|
|
[dependencies.rnix]
|
|
git = "https://github.com/nix-community/rnix-parser.git"
|
|
rev = "7d0d929c22ad27bdcc0779afe445b541d3ce9631"
|
|
|
|
[dependencies.tvix-eval]
|
|
path = "../../tvix/eval"
|
|
default-features = false
|