Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 956 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 956 Bytes

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.