[package]
edition = "2021"
name = "projm"
version = "0.6.1"
authors = ["Rachid Zaaf <[rachidzaaf9@gmailcom]>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Project organizer and fuzzy navigator for developers — classify, group, and jump to projects from the terminal"
readme = "README.md"
keywords = [
"cli",
"projects",
"navigator",
"developer-tools",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/ZAAFHachemrachid/projm"
[package.metadata.wix]
upgrade-guid = "A53BDBE1-3CAB-4F5F-85E0-65F2E6AF142C"
path-guid = "B0EE6D84-5987-44DF-8328-624E589F9973"
license = false
eula = false
[lib]
name = "projm"
path = "src/lib.rs"
[[bin]]
name = "projm"
path = "src/main.rs"
[[test]]
name = "blueprints_tests"
path = "tests/blueprints_tests.rs"
[[test]]
name = "classify_tests"
path = "tests/classify_tests.rs"
[[test]]
name = "clone_tests"
path = "tests/clone_tests.rs"
[[test]]
name = "editors_tests"
path = "tests/editors_tests.rs"
[[test]]
name = "organize_tests"
path = "tests/organize_tests.rs"
[[test]]
name = "prefs_tests"
path = "tests/prefs_tests.rs"
[[test]]
name = "rules_tests"
path = "tests/rules_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.colored]
version = "3.1.1"
[dependencies.console]
version = "0.16.3"
[dependencies.dialoguer]
version = "0.12.0"
features = ["fuzzy-select"]
[dependencies.dirs]
version = "6.0.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[profile.dist]
lto = "thin"
inherits = "release"