forked from Hans02-Neo/clipper-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "auto-clipper"
version = "0.1.0"
edition = "2021"
authors = ["Auto Clipper Contributors"]
description = "Intelligent video clipper powered by Gemini AI - Automatically analyze YouTube videos and create viral-worthy clips"
license = "MIT"
repository = "https://github.com/Hans02-Neo/clipper-rust"
homepage = "https://github.com/Hans02-Neo/clipper-rust"
documentation = "https://github.com/Hans02-Neo/clipper-rust/tree/main/docs"
readme = "README.md"
keywords = ["video", "ai", "clipper", "youtube", "gemini"]
categories = ["multimedia::video", "command-line-utilities"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
dotenv = "0.15"
[[bin]]
name = "auto-clipper"
path = "src/main.rs"