[package] name = "setuprs" version = "0.1.6" edition = "2021" description = "setuprs is a versatile CLI and TUI application designed to streamline project management by enabling quick creation and cloning of project snapshots. Utilizing clap.rs for command-line functionality and ratatui.rs for an interactive text interface, setuprs offers a user-friendly solution for managing and replicating project scaffolds efficiently." repository = "https://github.com/vitordeoliveira/setuprs" homepage = "https://github.com/vitordeoliveira/setuprs" license = "MIT" authors = ["Vitor de Oliveira vitordeoliveira50@gmail.com"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] assert_cmd = "2.0.14" clap = { version = "4.5.4", features = ["derive"] } # color-eyre = "0.6.3" ratatui = { version = "0.27.0", optional = true } crossterm = { version = "0.27.0", optional = true } glob = "0.3.1" predicates = "3.1.0" serde = "1.0.197" serde_derive = "1.0.197" serial_test = "3.1.1" thiserror = "1.0.61" tokio = { version = "1.37.0", features = ["full"] } tokio-util = "0.7.11" toml = "0.8.12" uuid = { version = "1.8.0", features = ["v4"] } [features] tui = ["dep:ratatui", "dep:crossterm"] [[bin]] name = "setuprs"