Skip to content

Commit

Permalink
basic export cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich committed Dec 21, 2024
1 parent 0a187c0 commit c04b1d8
Show file tree
Hide file tree
Showing 8 changed files with 906 additions and 670 deletions.
218 changes: 210 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = ["apps/desktop/src-tauri", "crates/*"]
members = [ "apps/cli","apps/desktop/src-tauri", "crates/*"]

[workspace.dependencies]
anyhow = "1.0.86"
Expand Down
20 changes: 20 additions & 0 deletions apps/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "cli"
version = "0.1.0"
edition = "2021"

[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
cap-utils = { path = "../../crates/utils" }
cap-project = { path = "../../crates/project" }
cap-rendering = { path = "../../crates/rendering" }
cap-ffmpeg-cli = { path = "../../crates/ffmpeg-cli" }
cap-editor = { path = "../../crates/editor" }
cap-media = { path = "../../crates/media" }
cap-flags = { path = "../../crates/flags" }
cap-recording = { path = "../../crates/recording" }
cap-export = { path = "../../crates/export" }
serde = "1.0.216"
serde_json = "1.0.133"
tokio.workspace = true
editor = "0.1.1"
Loading

1 comment on commit c04b1d8

@vercel
Copy link

@vercel vercel bot commented on c04b1d8 Dec 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.