Skip to content

Limeth/dvsynth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

473507f · Aug 15, 2022

History

89 Commits
Oct 28, 2020
Aug 15, 2022
Oct 30, 2020
Jan 3, 2021
Oct 10, 2020
Nov 29, 2020
Nov 29, 2020
Oct 19, 2020
Aug 15, 2022
Oct 13, 2020
Oct 28, 2020

Repository files navigation

DVSynth — Digital Video Synthesizer

DVSynth is a real-time graph-based video compositor for broadcasting and creative coding.

demo

Development

Generating Documentation

To generate docs with properly rendered math expressions, use the following command. Optionally add the --open flag to open the generated docs in the browser.

env RUSTDOCFLAGS="--html-in-header doc/katex.html" cargo doc --no-deps

Editing Dependencies Effectively

When working on the project, it helps to be able to change the source code for some of the dependencies. This can be done by cloning the source code of the dependency and then adding the path to ~/.cargo/config.toml:

paths = [ "workspace/rust/iced" ]

This way, Cargo.toml can be left unchanged and the local source code for those dependencies will be used.