bytes-radar 0.3.0

A tool for analyzing code statistics from remote repositories with hyper-fast performance
Documentation
[[bin]]
name = "bytes-radar"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.bytes]
version = "1.5"

[dependencies.clap]
features = ["derive"]
optional = true
version = "4.5"

[dependencies.colored]
optional = true
version = "2.1"

[dependencies.env_logger]
optional = true
version = "0.11"

[dependencies.flate2]
version = "1.0"

[dependencies.futures-util]
version = "0.3"

[dependencies.indicatif]
optional = true
version = "0.17"

[dependencies.log]
version = "0.4"

[dependencies.once_cell]
version = "1.21"

[dependencies.reqwest]
default-features = false
features = ["stream", "rustls-tls"]
version = "0.12"

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

[dependencies.serde-xml-rs]
version = "0.6"

[dependencies.serde_json]
version = "1.0"

[dependencies.tar]
version = "0.4"

[dependencies.thiserror]
version = "2.0"

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

[features]
cli = ["dep:colored", "dep:env_logger", "dep:clap", "dep:indicatif"]
default = ["cli"]
wasm = ["dep:wasm-bindgen", "dep:js-sys", "dep:web-sys"]

[lib]
crate-type = ["cdylib", "rlib"]
name = "bytes_radar"
path = "src/lib.rs"

[package]
authors = ["ProgramZmh <zmh@lightxi.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A tool for analyzing code statistics from remote repositories with hyper-fast performance"
edition = "2024"
exclude = ["target/", "app/", "Cargo.lock", "tests/", "examples/", ".github/", ".gitignore", ".git/", "*.md", "benches/", "docs/"]
keywords = ["cloc", "code-analysis", "wasm", "remote", "cli"]
license = "Apache-2.0"
name = "bytes-radar"
readme = "README.md"
repository = "https://github.com/zmh-program/bytes-radar"
version = "0.3.0"

[profile.dev]
debug = 2
opt-level = 0

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"

[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
optional = true
version = "0.3"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
optional = true
version = "0.2"

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
features = ["console"]
optional = true
version = "0.3"