[package]
name = "switchdev"
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
description = "A fast CLI to instantly switch between development projects and run their startup commands"
license = "MIT"
readme = "README.md"
repository = "https://github.com/s0r0j/switchdev"
homepage = "https://github.com/s0r0j/switchdev"
keywords = ["cli", "developer-tools", "workflow", "productivity", "switch"]
categories = ["command-line-utilities", "development-tools"]
authors = ["Shreyaj Dinesh"]
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE"
]
exclude = [
".github",
"target",
"tests",
"examples"
]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
dirs = "5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[profile.release]
lto = true
codegen-units = 1
strip = true