Crates.io | cargo-depsize |
lib.rs | cargo-depsize |
version | 1.0.3 |
source | src |
created_at | 2023-03-27 12:53:24.232523 |
updated_at | 2024-11-08 04:32:34.749402 |
description | Rust cargo utility that calculates and displays the total size of each dependency in your Rust project. |
homepage | |
repository | https://github.com/Alfex4936/cargo-depsize |
max_upload_size | |
id | 822092 |
size | 103,680 |
cargo-depsize
===============
cargo-depsize
is a Rust cargo utility that calculates and displays the total size of each dependency in your Rust project.
Install cargo-depsize
using the following command:
cargo install cargo-depsize
After installation, simply run the following command in your Rust project directory:
cargo depsize
This command will display the size of each dependency package in your Rust project, as well as the total size of all dependencies.
[dependencies]
actix-rt = "2"
actix-http = "3"
actix-web = "4"
actix-cors = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1.0"
reqwest = { version = "0.11", features = ["json", "blocking"] }
scraper = "0.15"
chrono = "0.4"
kakao-rs = "0.3"
rand = "0.8"
lazy_static = "1.4.0"
mongodb = "2"
futures = "0.3"
actix-cors (v0.6.4) : 120.79KB (123690 bytes)
actix-http (v3.3.1) : 768.80KB (787252 bytes)
actix-rt (v2.8.0) : 71.69KB (73408 bytes)
actix-web (v4.3.1) : 1.00MB (1049274 bytes)
chrono (v0.4.24) : 985.68KB (1009338 bytes)
futures (v0.3.27) : 303.00KB (310269 bytes)
kakao-rs (v0.3.4) : 78.91KB (80803 bytes)
lazy_static (v1.4.0) : 29.38KB (30081 bytes)
mongodb (v2.4.0) : 4.27MB (4473014 bytes)
rand (v0.8.5) : 342.29KB (350509 bytes)
reqwest (v0.11.15) : 690.98KB (707563 bytes)
scraper (v0.15.0) : 85.43KB (87484 bytes)
serde (v1.0.158) : 497.03KB (508959 bytes)
serde_derive (v1.0.158) : 305.38KB (312706 bytes)
serde_json (v1.0.94) : 669.40KB (685469 bytes)
> Total size: 10.10MB (10589819 bytes)
cargo-depsize
is built on top of the following dependencies:
Contributions are welcome! If you have any suggestions or improvements, feel free to create a pull request or open an issue on the repository.
cargo-depsize
is released under the MIT License.