[package]
edition = "2024"
rust-version = "1.88"
name = "nvmman"
version = "0.1.3"
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An interactive TUI for maintaining nvm Node.js installations and global npm packages"
homepage = "https://github.com/handyutils/nvmman"
readme = "README.md"
keywords = [
"nodejs",
"nvm",
"npm",
"tui",
"ratatui",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/handyutils/nvmman"
[[bin]]
name = "nvmman"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.crossterm]
version = "0.29"
[dependencies.ratatui]
version = "0.30"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.semver]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.15"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
unused_must_use = "deny"