20 lines
327 B
Text
20 lines
327 B
Text
|
digraph {
|
||
|
bgcolor="transparent"
|
||
|
node [fillcolor="lightgrey",style="filled"]
|
||
|
|
||
|
tvix_cli
|
||
|
tvix_eval
|
||
|
nix_compat
|
||
|
tvix_serde
|
||
|
tvix_store
|
||
|
|
||
|
tvix_cli -> tvix_store
|
||
|
tvix_cli -> nix_compat
|
||
|
tvix_cli -> tvix_eval
|
||
|
|
||
|
tvix_store -> nix_compat
|
||
|
tvix_eval -> nix_compat
|
||
|
|
||
|
tvix_serde -> tvix_eval
|
||
|
}
|