2022-09-04 14:16:27 +02:00
|
|
|
[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"
|
2022-09-18 11:59:19 +02:00
|
|
|
yew-router = "0.16"
|
2022-09-04 14:16:27 +02:00
|
|
|
codemap = "0.1.3"
|
2022-09-18 11:59:19 +02:00
|
|
|
serde_urlencoded = "*" # pinned by yew
|
|
|
|
web-sys = "*" # pinned by yew
|
2022-09-04 14:16:27 +02:00
|
|
|
|
2022-09-11 00:49:06 +02:00
|
|
|
# needs to be in sync with nixpkgs
|
|
|
|
wasm-bindgen = "= 0.2.82"
|
|
|
|
|
2022-09-04 14:16:27 +02:00
|
|
|
[dependencies.rnix]
|
|
|
|
git = "https://github.com/nix-community/rnix-parser.git"
|
2022-09-22 23:31:40 +02:00
|
|
|
rev = "85a045afd33e073a3eab4c0ea2f515b6bed557ab"
|
2022-09-04 14:16:27 +02:00
|
|
|
|
|
|
|
[dependencies.tvix-eval]
|
2022-09-11 00:49:06 +02:00
|
|
|
path = "../../tvix/eval"
|
2022-09-04 14:16:27 +02:00
|
|
|
default-features = false
|
2022-09-18 18:23:22 +02:00
|
|
|
|
|
|
|
[dependencies.serde]
|
|
|
|
version = "*" # pinned by yew
|
|
|
|
features = [ "derive" ]
|