about summary refs log tree commit diff
path: root/corp/tvixbolt/Cargo.toml
blob: fa05350db6443eae93404240d14758b0cbb738d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[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 = "85a045afd33e073a3eab4c0ea2f515b6bed557ab"

[dependencies.tvix-eval]
path = "../../tvix/eval"
default-features = false

[dependencies.serde]
version = "*" # pinned by yew
features = [ "derive" ]