├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── example_project ├── Cargo.toml └── src │ └── main.rs ├── images ├── breakdown.png ├── comment.png └── dependencies.png ├── lib_project ├── Cargo.toml └── src │ └── lib.rs ├── package.json ├── src ├── bloat.ts ├── comments.ts ├── main.ts ├── snapshots.ts └── utils.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /example_project/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/example_project/Cargo.toml -------------------------------------------------------------------------------- /example_project/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/example_project/src/main.rs -------------------------------------------------------------------------------- /images/breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/images/breakdown.png -------------------------------------------------------------------------------- /images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/images/comment.png -------------------------------------------------------------------------------- /images/dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/images/dependencies.png -------------------------------------------------------------------------------- /lib_project/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/lib_project/Cargo.toml -------------------------------------------------------------------------------- /lib_project/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/lib_project/src/lib.rs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/package.json -------------------------------------------------------------------------------- /src/bloat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/src/bloat.ts -------------------------------------------------------------------------------- /src/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/src/comments.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/snapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/src/snapshots.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orf/cargo-bloat-action/HEAD/tsconfig.json --------------------------------------------------------------------------------