python-check-updates 0.3.0

Check for outdated Python 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 = "python-check-updates"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Check for outdated Python dependencies"
readme = "README.md"
keywords = [
    "python",
    "dependencies",
    "pip",
    "uv",
    "conda",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/folknor/check-updates"
resolver = "2"

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

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

[[test]]
name = "integration"
path = "tests/integration.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.dirs]
version = "6"

[dependencies.indicatif]
version = "0.18.4"

[dependencies.rayon]
version = "1"

[dependencies.regex]
version = "1.12.3"

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

[dependencies.semver]
version = "1.0.28"

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

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "2"

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

[dependencies.toml]
version = "1.1.2"

[dependencies.url]
version = "2"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.predicates]
version = "3.1.4"

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

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.wiremock]
version = "0.6"

[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"