[package]
edition = "2021"
rust-version = "1.80"
name = "cargo-bless"
version = "0.3.1"
build = false
exclude = [
"plan.md",
"tipsforai.md",
".github/",
".coderabbit.yaml",
".agents/",
"bullshitdetector/",
"docs/phase3-workspace-design.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "cargo-bless"
description = "Modernize your Rust dependencies with blessed.rs + live intel"
homepage = "https://github.com/Ruffian-L/cargo-bless"
readme = "README.md"
keywords = [
"cargo",
"dependencies",
"modernize",
"blessed",
"lint",
]
categories = ["development-tools::cargo-plugins"]
license = "MIT"
repository = "https://github.com/Ruffian-L/cargo-bless"
[lib]
name = "cargo_bless"
path = "src/lib.rs"
[[bin]]
name = "cargo-bless"
path = "src/main.rs"
[[bin]]
name = "update-suggestions"
path = "src/bin/update_suggestions.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "real_project_test"
path = "tests/real_project_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.cargo_metadata]
version = "0.19"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "2"
[dependencies.crates_io_api]
version = "0.12"
features = ["rustls"]
default-features = false
[dependencies.directories]
version = "6.0"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml_edit]
version = "0.22"
features = ["serde"]
[dependencies.tree-sitter]
version = "0.25"
[dependencies.tree-sitter-rust]
version = "0.24"
[dev-dependencies.assert_cmd]
version = "=2.1.2"
[dev-dependencies.predicates]
version = "=3.1.4"
[dev-dependencies.tempfile]
version = "=3.23.0"