[package] name = "youtube-first-comment" description = "A simple program that creates a new comment on YouTube when a new video is published for the specified channel" version = "0.5.1" publish = true authors = ["Lucas Silva "] categories = ["command-line-utilities"] edition = "2021" keywords = ["youtube", "utility"] license = "MIT" repository = "https://github.com/lcdss/youtube-first-comment" [[bin]] name = "yfc" path = "src/main.rs" [dependencies] clap = { version = "4.5.18", features = ["derive"] } dirs = "5.0.1" google-youtube3 = "5.0.5" tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] } [profile.release] codegen-units = 1 lto = true opt-level = "s" panic = "abort" strip = true