node-check-updates 0.3.0

Check for outdated npm dependencies
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "node-check-updates"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Check for outdated npm dependencies"
readme = "README.md"
keywords = [
    "npm",
    "pnpm",
    "yarn",
    "bun",
    "dependencies",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/folknor/check-updates"
resolver = "2"

[lib]
name = "ncu"
path = "src/lib.rs"

[[bin]]
name = "ncu"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.102"

[dependencies.check-updates-core]
version = "0.3.0"

[dependencies.clap]
version = "4.5.60"
features = ["derive"]

[dependencies.colored]
version = "3"

[dependencies.futures]
version = "0.3.32"

[dependencies.glob]
version = "0.3"

[dependencies.indicatif]
version = "0.18.4"

[dependencies.reqwest]
version = "0.13"
features = [
    "json",
    "native-tls",
]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.tokio]
version = "1.51.0"
features = [
    "rt-multi-thread",
    "macros",
    "sync",
]

[dev-dependencies.tempfile]
version = "3.25.0"

[lints.clippy]
await_holding_lock = "deny"
await_holding_refcell_ref = "deny"
cast_possible_truncation = "deny"
cast_possible_wrap = "deny"
cast_sign_loss = "deny"
clone_on_ref_ptr = "deny"
cloned_instead_of_copied = "deny"
collapsible_match = "deny"
explicit_iter_loop = "deny"
float_cmp = "deny"
if_same_then_else = "deny"
implicit_clone = "deny"
large_enum_variant = "deny"
manual_string_new = "deny"
needless_borrow = "deny"
needless_pass_by_value = "deny"
ok_expect = "deny"
ptr_arg = "deny"
redundant_closure_for_method_calls = "deny"
redundant_locals = "deny"
regex_creation_in_loops = "deny"
semicolon_if_nothing_returned = "deny"
uninlined_format_args = "deny"
unnecessary_sort_by = "deny"
unnecessary_unwrap = "deny"
unwrap_in_result = "deny"
unwrap_used = "deny"
wrong_self_convention = "deny"