diff options
| author | Mason Reed <mason@vector35.com> | 2026-03-13 12:24:18 -0700 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2026-03-24 18:46:48 -0700 |
| commit | 3c88b11e5df33116580ac008e36092775df66135 (patch) | |
| tree | cd64fbe149f05683ddabcccd0db7b87356f1f8cf /plugins/warp/demo | |
| parent | f325aa7b6026a1daef84931baeb1f50d7da10c10 (diff) | |
[WARP] Improved UX and API
- Exposes WARP type objects directly
- Adds processor API (for generating warp files directly)
- Adds file and chunk API
- Misc cleanup
- Simplified the amount of commands
- Replaced the "Create" commands with a purpose built processor dialog
- Added a native QT viewer for WARP files
- Simplified committing to a remote with a purpose built commit dialog
Diffstat (limited to 'plugins/warp/demo')
| -rw-r--r-- | plugins/warp/demo/Cargo.toml | 8 | ||||
| -rw-r--r-- | plugins/warp/demo/build.rs | 4 |
2 files changed, 0 insertions, 12 deletions
diff --git a/plugins/warp/demo/Cargo.toml b/plugins/warp/demo/Cargo.toml index 662b4131..7c9babad 100644 --- a/plugins/warp/demo/Cargo.toml +++ b/plugins/warp/demo/Cargo.toml @@ -27,19 +27,11 @@ uuid = { version = "1.12.0", features = ["v4", "serde"] } thiserror = "2.0" ar = { git = "https://github.com/mdsteele/rust-ar" } tempdir = "0.3.7" -regex = "1.11" directories = "6.0" compact_str = { version = "0.9.0", features = ["serde"] } base64 = "0.22" serde_qs = "0.15" -# For reports -minijinja = "2.10.2" -minijinja-embed = "2.10.2" - -[build-dependencies] -minijinja-embed = "2.10.2" - [dev-dependencies] criterion = "0.6" insta = { version = "1.42", features = ["yaml"] } diff --git a/plugins/warp/demo/build.rs b/plugins/warp/demo/build.rs index d0912f90..4940fe76 100644 --- a/plugins/warp/demo/build.rs +++ b/plugins/warp/demo/build.rs @@ -22,8 +22,4 @@ fn main() { lib_name ); } - - println!("cargo::rerun-if-changed=../src/templates"); - // Templates used for rendering reports. - minijinja_embed::embed_templates!("../src/templates"); } |
