[package] name = "gituser" version = "0.1.0" edition = "2021" description = "A git extend command to quick switch user profile" license = "MIT" email = "lisiurday@gmail.com" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "git-user" path = "src/main.rs" [dependencies] clap = { version = "3.1.18", features = ["derive"] } colored = "2.0.0" config = { version = "0.13.1", features = ["toml"] } dirs = "4.0.0" serde = "1.0.137" toml = "0.5.9"