depclean 0.1.2

A tool to analyze and optimize project dependencies
Documentation
[[bin]]
name = "depclean"
path = "src/main.rs"

[dependencies.assert_cmd]
version = "2.0"

[dependencies.cargo_metadata]
version = "0.15"

[dependencies.chrono]
version = "0.4"

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

[dependencies.petgraph]
version = "0.6"

[dependencies.predicates]
version = "2.0"

[dependencies.prettytable-rs]
version = "0.10"

[dependencies.rayon]
version = "1.6"

[dependencies.reqwest]
features = ["json"]
version = "0.11"

[dependencies.semver]
version = "1.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1"

[dependencies.toml]
version = "0.7"

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

[package]
authors = ["Suhas A"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A tool to analyze and optimize project dependencies"
edition = "2021"
homepage = "https://github.com/suhasamaresh/depclean"
license = "MIT OR Apache-2.0"
name = "depclean"
readme = "README.md"
repository = "https://github.com/suhasamaresh/depclean"
version = "0.1.2"

[[test]]
name = "analysis_tests"
path = "tests/analysis_tests.rs"

[[test]]
name = "cargo_parser_tests"
path = "tests/cargo_parser_tests.rs"

[[test]]
name = "impact_tests"
path = "tests/impact_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"