countroo 0.1.2

Countroo is a tool to give basic code analysis inside your rust projects, it supports line counting, module counting, dependency counting, project listing as well as Rust Edition & rustc Version detection.
Documentation
[dependencies.cargo-toml-workspace]
version = "5.0.0"

[dependencies.num-format]
version = "0.4.4"

[dependencies.prettytable-rs]
optional = true
version = "^0.10"

[dependencies.quick-xml]
features = ["serialize"]
optional = true
version = "0.31.0"

[dependencies.rayon]
version = "1.9.0"

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

[dependencies.serde_json]
optional = true
version = "1.0.114"

[dependencies.serde_yaml]
optional = true
version = "0.9.32"

[dependencies.toml]
optional = true
version = "0.8.10"

[dependencies.walkdir]
version = "2.4.0"

[features]
default = ["newline-config", "tabular-output"]
full = ["toml", "newline-config", "toml-config", "yaml-config", "json-config", "xml-config", "tabular-output", "toml-output", "yaml-output", "json-output", "xml-output"]
json-config = ["serde_json"]
json-output = ["serde_json"]
newline-config = []
tabular-output = ["prettytable-rs"]
toml-config = ["toml"]
toml-output = ["toml"]
xml-config = ["quick-xml"]
xml-output = ["quick-xml"]
yaml-config = ["serde_yaml"]
yaml-output = ["serde_yaml"]

[package]
build = "build.rs"
categories = ["development-tools", "development-tools::procedural-macro-helpers", "command-line-utilities"]
description = "Countroo is a tool to give basic code analysis inside your rust projects, it supports line counting, module counting, dependency counting, project listing as well as Rust Edition & rustc Version detection."
edition = "2021"
keywords = ["counter", "analysis", "dependency", "module", "line"]
license-file = "LICENSE"
name = "countroo"
readme = "README.md"
repository = "https://github.com/theHamdiz/countroo"
version = "0.1.2"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"