switchdev 0.1.0

A fast CLI to instantly switch between development projects and run their startup commands
[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"]

# Only include necessary files in published crate
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE"
]

# Optional but good hygiene
exclude = [
    ".github",
    "target",
    "tests",
    "examples"
]

[dependencies]
clap = { version = "4.5", features = ["derive"] }
dirs = "5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[profile.release]
# Optimized binary (important for CLI tools)
lto = true
codegen-units = 1
strip = true