├── .github ├── configs │ └── skywalking-eyes.yml └── workflows │ ├── other.yml │ └── rust.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── docs ├── dependencies_mods_only_output.svg ├── dependencies_output.dot ├── dependencies_output.svg ├── orphans_output.png └── structure_output.png ├── renovate.json ├── src ├── analyzer.rs ├── colors.rs ├── colors │ └── cli.rs ├── command.rs ├── command │ ├── dependencies.rs │ ├── dependencies │ │ ├── command.rs │ │ ├── cycles │ │ │ ├── mod.rs │ │ │ ├── rustfmt.toml │ │ │ └── tri_color.rs │ │ ├── filter.rs │ │ ├── options.rs │ │ ├── printer.rs │ │ └── theme.rs │ ├── orphans.rs │ ├── orphans │ │ ├── command.rs │ │ ├── options.rs │ │ ├── orphan.rs │ │ ├── printer.rs │ │ ├── scanner.rs │ │ └── theme.rs │ ├── structure.rs │ └── structure │ │ ├── command.rs │ │ ├── filter.rs │ │ ├── options.rs │ │ ├── printer.rs │ │ └── theme.rs ├── graph.rs ├── graph │ ├── builder.rs │ └── walker.rs ├── item.rs ├── item │ ├── attr.rs │ ├── kind_display_name.rs │ ├── kind_ordering.rs │ └── visibility.rs ├── lib.rs ├── main.rs ├── options.rs ├── tree.rs ├── tree │ └── builder.rs └── utils.rs └── tests ├── dependencies.rs ├── general.rs ├── orphans.rs ├── projects ├── enum_fields │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── function_body │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── function_inputs │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── function_outputs │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── github_issue_102 │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── github_issue_172 │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── github_issue_222 │ ├── Cargo.toml │ ├── dependency │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── src │ │ └── lib.rs ├── github_issue_254 │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── github_issue_362 │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── github_issue_79 │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── github_issue_80 │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── no_orphans │ ├── Cargo.toml │ └── src │ │ ├── dummy.rs │ │ └── lib.rs ├── orphans │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── orphans.rs │ │ └── orphans │ │ ├── bar.rs │ │ └── foo │ │ └── mod.rs ├── package_bin_target │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── package_lib_target │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── package_multi_target │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── readme_graph_example │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── readme_tree_example │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── smoke │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── smoke_structure │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── struct_fields │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── tuple_fields │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── union_fields │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── virtual_workspace_multi_package │ ├── Cargo.toml │ ├── package_bin_target │ ├── package_lib_target │ └── package_multi_target ├── virtual_workspace_single_package_bin_target │ ├── Cargo.toml │ └── package_bin_target ├── virtual_workspace_single_package_lib_target │ ├── Cargo.toml │ └── package_lib_target ├── virtual_workspace_single_package_multi_target │ ├── Cargo.toml │ └── package_multi_target ├── workspace_multi_package │ ├── Cargo.toml │ ├── package_bin_target │ ├── package_lib_target │ ├── package_multi_target │ └── src │ │ └── lib.rs ├── workspace_single_package_bin_target │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── workspace_single_package_lib_target │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── workspace_single_package_multi_target │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── main.rs ├── snapshots ├── dependencies__bin__fail__package_lib_target.snap ├── dependencies__bin__fail__package_multi_target.snap ├── dependencies__bin__fail__virtual_workspace_multi_package.snap ├── dependencies__bin__fail__virtual_workspace_single_package_lib_target.snap ├── dependencies__bin__fail__virtual_workspace_single_package_multi_target.snap ├── dependencies__bin__fail__workspace_multi_package.snap ├── dependencies__bin__fail__workspace_single_package_lib_target.snap ├── dependencies__bin__fail__workspace_single_package_multi_target.snap ├── dependencies__bin__pass__package_bin_target.snap ├── dependencies__bin__pass__package_multi_target.snap ├── dependencies__bin__pass__virtual_workspace_single_package_bin_target.snap ├── dependencies__bin__pass__virtual_workspace_single_package_multi_target.snap ├── dependencies__bin__pass__workspace_single_package_bin_target.snap ├── dependencies__bin__pass__workspace_single_package_multi_target.snap ├── dependencies__cfg_test__with_tests__smoke.snap ├── dependencies__cfg_test__without_tests__smoke.snap ├── dependencies__colors__ansi__smoke.snap ├── dependencies__colors__plain__smoke.snap ├── dependencies__colors__truecolor__smoke.snap ├── dependencies__default__fail__package_multi_target.snap ├── dependencies__default__fail__virtual_workspace_single_package_multi_target.snap ├── dependencies__default__fail__workspace_single_package_multi_target.snap ├── dependencies__default__pass__package_bin_target.snap ├── dependencies__default__pass__package_lib_target.snap ├── dependencies__default__pass__virtual_workspace_single_package_bin_target.snap ├── dependencies__default__pass__virtual_workspace_single_package_lib_target.snap ├── dependencies__default__pass__workspace_single_package_bin_target.snap ├── dependencies__default__pass__workspace_single_package_lib_target.snap ├── dependencies__fields__enum_fields.snap ├── dependencies__fields__struct_fields.snap ├── dependencies__fields__tuple_fields.snap ├── dependencies__fields__union_fields.snap ├── dependencies__focus_on__glob_path__smoke.snap ├── dependencies__focus_on__nonexistent_path__smoke.snap ├── dependencies__focus_on__self_path__smoke.snap ├── dependencies__focus_on__simple_path__smoke.snap ├── dependencies__focus_on__use_tree__smoke.snap ├── dependencies__functions__function_body.snap ├── dependencies__functions__function_inputs.snap ├── dependencies__functions__function_outputs.snap ├── dependencies__github__issue_102__github_issue_102.snap ├── dependencies__github__issue_172__github_issue_172.snap ├── dependencies__github__issue_362__github_issue_362.snap ├── dependencies__github__issue_79__github_issue_79.snap ├── dependencies__github__issue_80__tests__github_issue_80.snap ├── dependencies__github__issue_80__without_tests__github_issue_80.snap ├── dependencies__help__smoke.snap ├── dependencies__lib__fail__package_bin_target.snap ├── dependencies__lib__fail__virtual_workspace_single_package_bin_target.snap ├── dependencies__lib__fail__workspace_single_package_bin_target.snap ├── dependencies__lib__pass__package_lib_target.snap ├── dependencies__lib__pass__package_multi_target.snap ├── dependencies__lib__pass__virtual_workspace_single_package_lib_target.snap ├── dependencies__lib__pass__virtual_workspace_single_package_multi_target.snap ├── dependencies__lib__pass__workspace_single_package_lib_target.snap ├── dependencies__lib__pass__workspace_single_package_multi_target.snap ├── dependencies__max_depth__depth_0__smoke.snap ├── dependencies__max_depth__depth_1__smoke.snap ├── dependencies__max_depth__depth_2__smoke.snap ├── dependencies__package__fail__package_bin_target.snap ├── dependencies__package__fail__package_lib_target.snap ├── dependencies__package__fail__package_multi_target.snap ├── dependencies__package__fail__virtual_workspace_multi_package.snap ├── dependencies__package__fail__virtual_workspace_single_package_bin_target.snap ├── dependencies__package__fail__virtual_workspace_single_package_lib_target.snap ├── dependencies__package__fail__virtual_workspace_single_package_multi_target.snap ├── dependencies__package__fail__workspace_multi_package.snap ├── dependencies__package__fail__workspace_single_package_bin_target.snap ├── dependencies__package__fail__workspace_single_package_lib_target.snap ├── dependencies__package__fail__workspace_single_package_multi_target.snap ├── dependencies__package__pass__package_bin_target.snap ├── dependencies__package__pass__package_lib_target.snap ├── dependencies__package__pass__virtual_workspace_single_package_bin_target.snap ├── dependencies__package__pass__virtual_workspace_single_package_lib_target.snap ├── dependencies__package__pass__workspace_single_package_bin_target.snap ├── dependencies__package__pass__workspace_single_package_lib_target.snap ├── dependencies__package_bin__fail__package_bin_target.snap ├── dependencies__package_bin__fail__package_lib_target.snap ├── dependencies__package_bin__fail__package_multi_target.snap ├── dependencies__package_bin__fail__virtual_workspace_multi_package.snap ├── dependencies__package_bin__fail__virtual_workspace_single_package_bin_target.snap ├── dependencies__package_bin__fail__virtual_workspace_single_package_lib_target.snap ├── dependencies__package_bin__fail__virtual_workspace_single_package_multi_target.snap ├── dependencies__package_bin__fail__workspace_multi_package.snap ├── dependencies__package_bin__fail__workspace_single_package_bin_target.snap ├── dependencies__package_bin__fail__workspace_single_package_lib_target.snap ├── dependencies__package_bin__fail__workspace_single_package_multi_target.snap ├── dependencies__package_bin__pass__package_bin_target.snap ├── dependencies__package_bin__pass__package_multi_target.snap ├── dependencies__package_bin__pass__virtual_workspace_single_package_bin_target.snap ├── dependencies__package_bin__pass__virtual_workspace_single_package_multi_target.snap ├── dependencies__package_bin__pass__workspace_single_package_bin_target.snap ├── dependencies__package_bin__pass__workspace_single_package_multi_target.snap ├── dependencies__package_lib__fail__package_bin_target.snap ├── dependencies__package_lib__fail__virtual_workspace_single_package_bin_target.snap ├── dependencies__package_lib__fail__workspace_single_package_bin_target.snap ├── dependencies__package_lib__pass__package_lib_target.snap ├── dependencies__package_lib__pass__package_multi_target.snap ├── dependencies__package_lib__pass__virtual_workspace_single_package_lib_target.snap ├── dependencies__package_lib__pass__virtual_workspace_single_package_multi_target.snap ├── dependencies__package_lib__pass__workspace_single_package_lib_target.snap ├── dependencies__package_lib__pass__workspace_single_package_multi_target.snap ├── dependencies__selection__no_externs__smoke.snap ├── dependencies__selection__no_fns__smoke.snap ├── dependencies__selection__no_modules__smoke.snap ├── dependencies__selection__no_owns__smoke.snap ├── dependencies__selection__no_traits__smoke.snap ├── dependencies__selection__no_types__smoke.snap ├── dependencies__selection__no_uses__smoke.snap ├── general__help__smoke.snap ├── orphans__colors__ansi__orphans.snap ├── orphans__colors__plain__orphans.snap ├── orphans__colors__truecolor__orphans.snap ├── orphans__help__smoke.snap ├── orphans__no_orphans__no_orphans.snap ├── orphans__orphans__orphans.snap ├── structure__bin__fail__package_lib_target.snap ├── structure__bin__fail__package_multi_target.snap ├── structure__bin__fail__virtual_workspace_multi_package.snap ├── structure__bin__fail__virtual_workspace_single_package_lib_target.snap ├── structure__bin__fail__virtual_workspace_single_package_multi_target.snap ├── structure__bin__fail__workspace_multi_package.snap ├── structure__bin__fail__workspace_single_package_lib_target.snap ├── structure__bin__fail__workspace_single_package_multi_target.snap ├── structure__bin__pass__package_bin_target.snap ├── structure__bin__pass__package_multi_target.snap ├── structure__bin__pass__virtual_workspace_single_package_bin_target.snap ├── structure__bin__pass__virtual_workspace_single_package_multi_target.snap ├── structure__bin__pass__workspace_single_package_bin_target.snap ├── structure__bin__pass__workspace_single_package_multi_target.snap ├── structure__cfg_test__smoke_structure.snap ├── structure__cfg_test__with_tests__smoke_structure.snap ├── structure__cfg_test__without_tests__smoke_structure.snap ├── structure__colors__plain__smoke_structure.snap ├── structure__default__fail__package_multi_target.snap ├── structure__default__fail__virtual_workspace_single_package_multi_target.snap ├── structure__default__fail__workspace_single_package_multi_target.snap ├── structure__default__pass__package_bin_target.snap ├── structure__default__pass__package_lib_target.snap ├── structure__default__pass__virtual_workspace_single_package_bin_target.snap ├── structure__default__pass__virtual_workspace_single_package_lib_target.snap ├── structure__default__pass__workspace_single_package_bin_target.snap ├── structure__default__pass__workspace_single_package_lib_target.snap ├── structure__focus_on__glob_path__smoke_structure.snap ├── structure__focus_on__nonexistent_path__smoke_structure.snap ├── structure__focus_on__self_path__smoke_structure.snap ├── structure__focus_on__simple_path__smoke_structure.snap ├── structure__focus_on__use_tree__smoke_structure.snap ├── structure__focus_on__with_max_depth__smoke_structure.snap ├── structure__github__issue_222__github_issue_222.snap ├── structure__github__issue_362__github_issue_362.snap ├── structure__github__issue_80__tests__github_issue_80.snap ├── structure__github__issue_80__without_tests__github_issue_80.snap ├── structure__help__smoke_structure.snap ├── structure__lib__fail__package_bin_target.snap ├── structure__lib__fail__virtual_workspace_single_package_bin_target.snap ├── structure__lib__fail__workspace_single_package_bin_target.snap ├── structure__lib__pass__package_lib_target.snap ├── structure__lib__pass__package_multi_target.snap ├── structure__lib__pass__virtual_workspace_single_package_lib_target.snap ├── structure__lib__pass__virtual_workspace_single_package_multi_target.snap ├── structure__lib__pass__workspace_single_package_lib_target.snap ├── structure__lib__pass__workspace_single_package_multi_target.snap ├── structure__max_depth__depth_0__smoke_structure.snap ├── structure__max_depth__depth_1__smoke_structure.snap ├── structure__max_depth__depth_2__smoke_structure.snap ├── structure__package__fail__package_bin_target.snap ├── structure__package__fail__package_lib_target.snap ├── structure__package__fail__package_multi_target.snap ├── structure__package__fail__virtual_workspace_multi_package.snap ├── structure__package__fail__virtual_workspace_single_package_bin_target.snap ├── structure__package__fail__virtual_workspace_single_package_lib_target.snap ├── structure__package__fail__virtual_workspace_single_package_multi_target.snap ├── structure__package__fail__workspace_multi_package.snap ├── structure__package__fail__workspace_single_package_bin_target.snap ├── structure__package__fail__workspace_single_package_lib_target.snap ├── structure__package__fail__workspace_single_package_multi_target.snap ├── structure__package__pass__package_bin_target.snap ├── structure__package__pass__package_lib_target.snap ├── structure__package__pass__virtual_workspace_single_package_bin_target.snap ├── structure__package__pass__virtual_workspace_single_package_lib_target.snap ├── structure__package__pass__workspace_single_package_bin_target.snap ├── structure__package__pass__workspace_single_package_lib_target.snap ├── structure__package_bin__fail__package_bin_target.snap ├── structure__package_bin__fail__package_lib_target.snap ├── structure__package_bin__fail__package_multi_target.snap ├── structure__package_bin__fail__virtual_workspace_multi_package.snap ├── structure__package_bin__fail__virtual_workspace_single_package_bin_target.snap ├── structure__package_bin__fail__virtual_workspace_single_package_lib_target.snap ├── structure__package_bin__fail__virtual_workspace_single_package_multi_target.snap ├── structure__package_bin__fail__workspace_multi_package.snap ├── structure__package_bin__fail__workspace_single_package_bin_target.snap ├── structure__package_bin__fail__workspace_single_package_lib_target.snap ├── structure__package_bin__fail__workspace_single_package_multi_target.snap ├── structure__package_bin__pass__package_bin_target.snap ├── structure__package_bin__pass__package_multi_target.snap ├── structure__package_bin__pass__virtual_workspace_single_package_bin_target.snap ├── structure__package_bin__pass__virtual_workspace_single_package_multi_target.snap ├── structure__package_bin__pass__workspace_single_package_bin_target.snap ├── structure__package_bin__pass__workspace_single_package_multi_target.snap ├── structure__package_lib__fail__package_bin_target.snap ├── structure__package_lib__fail__virtual_workspace_single_package_bin_target.snap ├── structure__package_lib__fail__workspace_single_package_bin_target.snap ├── structure__package_lib__pass__package_lib_target.snap ├── structure__package_lib__pass__package_multi_target.snap ├── structure__package_lib__pass__virtual_workspace_single_package_lib_target.snap ├── structure__package_lib__pass__virtual_workspace_single_package_multi_target.snap ├── structure__package_lib__pass__workspace_single_package_lib_target.snap ├── structure__package_lib__pass__workspace_single_package_multi_target.snap ├── structure__selection__no_fns__smoke_structure.snap ├── structure__selection__no_traits__smoke_structure.snap ├── structure__selection__no_types__smoke_structure.snap ├── structure__sort_by__kind__smoke_structure.snap ├── structure__sort_by__name__smoke_structure.snap ├── structure__sort_by__visibility__smoke_structure.snap └── structure__sort_reversed__smoke_structure.snap ├── structure.rs └── util.rs /.github/configs/skywalking-eyes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/.github/configs/skywalking-eyes.yml -------------------------------------------------------------------------------- /.github/workflows/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/.github/workflows/other.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/README.md -------------------------------------------------------------------------------- /docs/dependencies_mods_only_output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/docs/dependencies_mods_only_output.svg -------------------------------------------------------------------------------- /docs/dependencies_output.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/docs/dependencies_output.dot -------------------------------------------------------------------------------- /docs/dependencies_output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/docs/dependencies_output.svg -------------------------------------------------------------------------------- /docs/orphans_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/docs/orphans_output.png -------------------------------------------------------------------------------- /docs/structure_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/docs/structure_output.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/renovate.json -------------------------------------------------------------------------------- /src/analyzer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/analyzer.rs -------------------------------------------------------------------------------- /src/colors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/colors.rs -------------------------------------------------------------------------------- /src/colors/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/colors/cli.rs -------------------------------------------------------------------------------- /src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command.rs -------------------------------------------------------------------------------- /src/command/dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/dependencies.rs -------------------------------------------------------------------------------- /src/command/dependencies/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/dependencies/command.rs -------------------------------------------------------------------------------- /src/command/dependencies/cycles/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/dependencies/cycles/mod.rs -------------------------------------------------------------------------------- /src/command/dependencies/cycles/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/dependencies/cycles/rustfmt.toml -------------------------------------------------------------------------------- /src/command/dependencies/cycles/tri_color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/dependencies/cycles/tri_color.rs -------------------------------------------------------------------------------- /src/command/dependencies/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/dependencies/filter.rs -------------------------------------------------------------------------------- /src/command/dependencies/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/dependencies/options.rs -------------------------------------------------------------------------------- /src/command/dependencies/printer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/dependencies/printer.rs -------------------------------------------------------------------------------- /src/command/dependencies/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/dependencies/theme.rs -------------------------------------------------------------------------------- /src/command/orphans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/orphans.rs -------------------------------------------------------------------------------- /src/command/orphans/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/orphans/command.rs -------------------------------------------------------------------------------- /src/command/orphans/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/orphans/options.rs -------------------------------------------------------------------------------- /src/command/orphans/orphan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/orphans/orphan.rs -------------------------------------------------------------------------------- /src/command/orphans/printer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/orphans/printer.rs -------------------------------------------------------------------------------- /src/command/orphans/scanner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/orphans/scanner.rs -------------------------------------------------------------------------------- /src/command/orphans/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/orphans/theme.rs -------------------------------------------------------------------------------- /src/command/structure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/structure.rs -------------------------------------------------------------------------------- /src/command/structure/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/structure/command.rs -------------------------------------------------------------------------------- /src/command/structure/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/structure/filter.rs -------------------------------------------------------------------------------- /src/command/structure/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/structure/options.rs -------------------------------------------------------------------------------- /src/command/structure/printer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/structure/printer.rs -------------------------------------------------------------------------------- /src/command/structure/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/command/structure/theme.rs -------------------------------------------------------------------------------- /src/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/graph.rs -------------------------------------------------------------------------------- /src/graph/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/graph/builder.rs -------------------------------------------------------------------------------- /src/graph/walker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/graph/walker.rs -------------------------------------------------------------------------------- /src/item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/item.rs -------------------------------------------------------------------------------- /src/item/attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/item/attr.rs -------------------------------------------------------------------------------- /src/item/kind_display_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/item/kind_display_name.rs -------------------------------------------------------------------------------- /src/item/kind_ordering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/item/kind_ordering.rs -------------------------------------------------------------------------------- /src/item/visibility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/item/visibility.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/options.rs -------------------------------------------------------------------------------- /src/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/tree.rs -------------------------------------------------------------------------------- /src/tree/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/tree/builder.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/src/utils.rs -------------------------------------------------------------------------------- /tests/dependencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/dependencies.rs -------------------------------------------------------------------------------- /tests/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/general.rs -------------------------------------------------------------------------------- /tests/orphans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/orphans.rs -------------------------------------------------------------------------------- /tests/projects/enum_fields/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/enum_fields/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/enum_fields/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/enum_fields/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/function_body/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/function_body/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/function_body/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/function_body/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/function_inputs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/function_inputs/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/function_inputs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/function_inputs/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/function_outputs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/function_outputs/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/function_outputs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/function_outputs/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/github_issue_102/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_102/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/github_issue_102/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_102/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/github_issue_172/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_172/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/github_issue_172/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_172/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/github_issue_222/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_222/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/github_issue_222/dependency/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_222/dependency/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/github_issue_222/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn dummy() {} 2 | -------------------------------------------------------------------------------- /tests/projects/github_issue_222/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_222/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/github_issue_254/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_254/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/github_issue_254/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_254/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/github_issue_362/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_362/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/github_issue_362/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_362/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/github_issue_79/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_79/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/github_issue_79/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_79/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/github_issue_80/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_80/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/github_issue_80/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/github_issue_80/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/no_orphans/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/no_orphans/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/no_orphans/src/dummy.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/projects/no_orphans/src/lib.rs: -------------------------------------------------------------------------------- 1 | mod dummy; 2 | -------------------------------------------------------------------------------- /tests/projects/orphans/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/orphans/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/orphans/src/lib.rs: -------------------------------------------------------------------------------- 1 | mod orphans; 2 | -------------------------------------------------------------------------------- /tests/projects/orphans/src/orphans.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/projects/orphans/src/orphans/bar.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/orphans/src/orphans/foo/mod.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/package_bin_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/package_bin_target/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/package_bin_target/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/projects/package_lib_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/package_lib_target/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/package_lib_target/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/projects/package_multi_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/package_multi_target/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/package_multi_target/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/projects/package_multi_target/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/projects/readme_graph_example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/readme_graph_example/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/readme_graph_example/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/readme_graph_example/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/readme_tree_example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/readme_tree_example/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/readme_tree_example/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/readme_tree_example/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/smoke/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/smoke/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/smoke/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/smoke/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/smoke_structure/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/smoke_structure/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/smoke_structure/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/smoke_structure/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/struct_fields/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/struct_fields/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/struct_fields/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/struct_fields/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/tuple_fields/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/tuple_fields/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/tuple_fields/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/tuple_fields/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/union_fields/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/union_fields/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/union_fields/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/union_fields/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_multi_package/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/virtual_workspace_multi_package/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_multi_package/package_bin_target: -------------------------------------------------------------------------------- 1 | ../package_bin_target -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_multi_package/package_lib_target: -------------------------------------------------------------------------------- 1 | ../package_lib_target -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_multi_package/package_multi_target: -------------------------------------------------------------------------------- 1 | ../package_multi_target -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_single_package_bin_target/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["package_bin_target"] 3 | -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_single_package_bin_target/package_bin_target: -------------------------------------------------------------------------------- 1 | ../package_bin_target -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_single_package_lib_target/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["package_lib_target"] 3 | -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_single_package_lib_target/package_lib_target: -------------------------------------------------------------------------------- 1 | ../package_lib_target -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_single_package_multi_target/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["package_multi_target"] 3 | -------------------------------------------------------------------------------- /tests/projects/virtual_workspace_single_package_multi_target/package_multi_target: -------------------------------------------------------------------------------- 1 | ../package_multi_target -------------------------------------------------------------------------------- /tests/projects/workspace_multi_package/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/workspace_multi_package/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/workspace_multi_package/package_bin_target: -------------------------------------------------------------------------------- 1 | ../package_bin_target -------------------------------------------------------------------------------- /tests/projects/workspace_multi_package/package_lib_target: -------------------------------------------------------------------------------- 1 | ../package_lib_target -------------------------------------------------------------------------------- /tests/projects/workspace_multi_package/package_multi_target: -------------------------------------------------------------------------------- 1 | ../package_multi_target -------------------------------------------------------------------------------- /tests/projects/workspace_multi_package/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/workspace_multi_package/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/workspace_single_package_bin_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/workspace_single_package_bin_target/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/workspace_single_package_bin_target/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/projects/workspace_single_package_lib_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/workspace_single_package_lib_target/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/workspace_single_package_lib_target/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/workspace_single_package_lib_target/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/workspace_single_package_multi_target/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/workspace_single_package_multi_target/Cargo.toml -------------------------------------------------------------------------------- /tests/projects/workspace_single_package_multi_target/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/projects/workspace_single_package_multi_target/src/lib.rs -------------------------------------------------------------------------------- /tests/projects/workspace_single_package_multi_target/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__fail__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__fail__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__fail__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__fail__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__fail__virtual_workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__fail__virtual_workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__fail__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__fail__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__fail__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__fail__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__fail__workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__fail__workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__fail__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__fail__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__fail__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__fail__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__pass__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__pass__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__pass__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__pass__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__pass__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__pass__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__pass__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__pass__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__pass__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__pass__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__bin__pass__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__bin__pass__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__cfg_test__with_tests__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__cfg_test__with_tests__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__cfg_test__without_tests__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__cfg_test__without_tests__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__colors__ansi__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__colors__ansi__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__colors__plain__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__colors__plain__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__colors__truecolor__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__colors__truecolor__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__default__fail__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__default__fail__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__default__fail__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__default__fail__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__default__fail__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__default__fail__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__default__pass__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__default__pass__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__default__pass__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__default__pass__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__default__pass__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__default__pass__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__default__pass__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__default__pass__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__default__pass__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__default__pass__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__default__pass__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__default__pass__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__fields__enum_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__fields__enum_fields.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__fields__struct_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__fields__struct_fields.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__fields__tuple_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__fields__tuple_fields.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__fields__union_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__fields__union_fields.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__focus_on__glob_path__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__focus_on__glob_path__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__focus_on__nonexistent_path__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__focus_on__nonexistent_path__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__focus_on__self_path__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__focus_on__self_path__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__focus_on__simple_path__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__focus_on__simple_path__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__focus_on__use_tree__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__focus_on__use_tree__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__functions__function_body.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__functions__function_body.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__functions__function_inputs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__functions__function_inputs.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__functions__function_outputs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__functions__function_outputs.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__github__issue_102__github_issue_102.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__github__issue_102__github_issue_102.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__github__issue_172__github_issue_172.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__github__issue_172__github_issue_172.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__github__issue_362__github_issue_362.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__github__issue_362__github_issue_362.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__github__issue_79__github_issue_79.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__github__issue_79__github_issue_79.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__github__issue_80__tests__github_issue_80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__github__issue_80__tests__github_issue_80.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__github__issue_80__without_tests__github_issue_80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__github__issue_80__without_tests__github_issue_80.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__help__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__help__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__lib__fail__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__lib__fail__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__lib__fail__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__lib__fail__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__lib__fail__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__lib__fail__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__lib__pass__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__lib__pass__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__lib__pass__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__lib__pass__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__lib__pass__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__lib__pass__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__lib__pass__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__lib__pass__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__lib__pass__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__lib__pass__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__lib__pass__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__lib__pass__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__max_depth__depth_0__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__max_depth__depth_0__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__max_depth__depth_1__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__max_depth__depth_1__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__max_depth__depth_2__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__max_depth__depth_2__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__virtual_workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__virtual_workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__fail__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__fail__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__pass__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__pass__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__pass__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__pass__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__pass__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__pass__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__pass__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__pass__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__pass__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__pass__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package__pass__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package__pass__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__virtual_workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__virtual_workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__fail__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__fail__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__pass__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__pass__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__pass__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__pass__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__pass__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__pass__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__pass__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__pass__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__pass__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__pass__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_bin__pass__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_bin__pass__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_lib__fail__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_lib__fail__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_lib__fail__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_lib__fail__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_lib__fail__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_lib__fail__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_lib__pass__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_lib__pass__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_lib__pass__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_lib__pass__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_lib__pass__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_lib__pass__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_lib__pass__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_lib__pass__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_lib__pass__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_lib__pass__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__package_lib__pass__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__package_lib__pass__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__selection__no_externs__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__selection__no_externs__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__selection__no_fns__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__selection__no_fns__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__selection__no_modules__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__selection__no_modules__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__selection__no_owns__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__selection__no_owns__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__selection__no_traits__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__selection__no_traits__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__selection__no_types__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__selection__no_types__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/dependencies__selection__no_uses__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/dependencies__selection__no_uses__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/general__help__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/general__help__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/orphans__colors__ansi__orphans.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/orphans__colors__ansi__orphans.snap -------------------------------------------------------------------------------- /tests/snapshots/orphans__colors__plain__orphans.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/orphans__colors__plain__orphans.snap -------------------------------------------------------------------------------- /tests/snapshots/orphans__colors__truecolor__orphans.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/orphans__colors__truecolor__orphans.snap -------------------------------------------------------------------------------- /tests/snapshots/orphans__help__smoke.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/orphans__help__smoke.snap -------------------------------------------------------------------------------- /tests/snapshots/orphans__no_orphans__no_orphans.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/orphans__no_orphans__no_orphans.snap -------------------------------------------------------------------------------- /tests/snapshots/orphans__orphans__orphans.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/orphans__orphans__orphans.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__fail__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__fail__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__fail__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__fail__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__fail__virtual_workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__fail__virtual_workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__fail__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__fail__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__fail__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__fail__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__fail__workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__fail__workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__fail__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__fail__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__fail__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__fail__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__pass__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__pass__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__pass__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__pass__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__pass__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__pass__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__pass__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__pass__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__pass__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__pass__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__bin__pass__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__bin__pass__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__cfg_test__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__cfg_test__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__cfg_test__with_tests__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__cfg_test__with_tests__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__cfg_test__without_tests__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__cfg_test__without_tests__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__colors__plain__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__colors__plain__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__default__fail__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__default__fail__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__default__fail__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__default__fail__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__default__fail__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__default__fail__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__default__pass__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__default__pass__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__default__pass__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__default__pass__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__default__pass__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__default__pass__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__default__pass__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__default__pass__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__default__pass__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__default__pass__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__default__pass__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__default__pass__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__focus_on__glob_path__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__focus_on__glob_path__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__focus_on__nonexistent_path__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__focus_on__nonexistent_path__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__focus_on__self_path__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__focus_on__self_path__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__focus_on__simple_path__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__focus_on__simple_path__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__focus_on__use_tree__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__focus_on__use_tree__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__focus_on__with_max_depth__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__focus_on__with_max_depth__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__github__issue_222__github_issue_222.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__github__issue_222__github_issue_222.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__github__issue_362__github_issue_362.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__github__issue_362__github_issue_362.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__github__issue_80__tests__github_issue_80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__github__issue_80__tests__github_issue_80.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__github__issue_80__without_tests__github_issue_80.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__github__issue_80__without_tests__github_issue_80.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__help__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__help__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__lib__fail__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__lib__fail__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__lib__fail__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__lib__fail__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__lib__fail__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__lib__fail__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__lib__pass__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__lib__pass__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__lib__pass__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__lib__pass__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__lib__pass__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__lib__pass__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__lib__pass__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__lib__pass__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__lib__pass__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__lib__pass__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__lib__pass__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__lib__pass__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__max_depth__depth_0__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__max_depth__depth_0__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__max_depth__depth_1__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__max_depth__depth_1__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__max_depth__depth_2__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__max_depth__depth_2__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__virtual_workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__virtual_workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__fail__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__fail__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__pass__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__pass__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__pass__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__pass__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__pass__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__pass__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__pass__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__pass__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__pass__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__pass__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package__pass__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package__pass__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__virtual_workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__virtual_workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__workspace_multi_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__workspace_multi_package.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__fail__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__fail__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__pass__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__pass__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__pass__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__pass__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__pass__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__pass__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__pass__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__pass__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__pass__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__pass__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_bin__pass__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_bin__pass__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_lib__fail__package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_lib__fail__package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_lib__fail__virtual_workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_lib__fail__virtual_workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_lib__fail__workspace_single_package_bin_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_lib__fail__workspace_single_package_bin_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_lib__pass__package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_lib__pass__package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_lib__pass__package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_lib__pass__package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_lib__pass__virtual_workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_lib__pass__virtual_workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_lib__pass__virtual_workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_lib__pass__virtual_workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_lib__pass__workspace_single_package_lib_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_lib__pass__workspace_single_package_lib_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__package_lib__pass__workspace_single_package_multi_target.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__package_lib__pass__workspace_single_package_multi_target.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__selection__no_fns__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__selection__no_fns__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__selection__no_traits__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__selection__no_traits__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__selection__no_types__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__selection__no_types__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__sort_by__kind__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__sort_by__kind__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__sort_by__name__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__sort_by__name__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__sort_by__visibility__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__sort_by__visibility__smoke_structure.snap -------------------------------------------------------------------------------- /tests/snapshots/structure__sort_reversed__smoke_structure.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/snapshots/structure__sort_reversed__smoke_structure.snap -------------------------------------------------------------------------------- /tests/structure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/structure.rs -------------------------------------------------------------------------------- /tests/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regexident/cargo-modules/HEAD/tests/util.rs --------------------------------------------------------------------------------