[package] name = "dev_environment_launcher" version = "0.2.0" authors = ["Borna Cvitanić borna.cvitanic@gmail.com"] description = "Dev Environment Launcher is a command-line tool to help manage and open development projects for work environments like Unity and Rust." repository = "https://github.com/bornacvitanic/rust-csharp-doc-generator" license-file = "LICENSE.md" edition = "2021" keywords = ["cli", "tool", "unity", "development", "project-management"] categories = ["command-line-utilities", "development-tools"] [[bin]] name = "devenv" path = "src/main.rs" [dependencies] # To set up a basic command-line interface (CLI) structopt = "0.3" structopt-derive = "0.4" dialoguer = "0.11.0" # To handle config files toml = "0.8.15" config = "0.14.0" serde = { version = "1.0", features = ["derive"] } serde_derive = "1.0" [dev-dependencies] tempfile = "3.2"