├── .cargo └── config.toml ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.md └── workflows │ └── ci.yaml ├── .gitignore ├── .gitmodules ├── .pre-commit-hooks.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── SECURITY.md ├── benches └── license_data.rs ├── clippy.toml ├── deny.template.toml ├── deny.toml ├── docs ├── .gitignore ├── book.toml └── src │ ├── README.md │ ├── SUMMARY.md │ ├── checks │ ├── README.md │ ├── advisories │ │ ├── README.md │ │ ├── cfg.md │ │ └── diags.md │ ├── bans │ │ ├── README.md │ │ ├── cfg.md │ │ └── diags.md │ ├── cfg.md │ ├── licenses │ │ ├── README.md │ │ ├── cfg.md │ │ └── diags.md │ └── sources │ │ ├── README.md │ │ ├── cfg.md │ │ └── diags.md │ ├── cli │ ├── README.md │ ├── check.md │ ├── common.md │ ├── init.md │ └── list.md │ └── output │ ├── advisories.svg │ ├── bans.svg │ ├── licenses.svg │ └── sources.svg ├── examples ├── 01_allow_license │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── deny.toml │ └── main.rs ├── 02_deny_license │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── deny.toml │ └── main.rs ├── 03_deny_copyleft │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── deny.toml │ └── main.rs ├── 04_gnu_licenses │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── deny.toml │ └── main.rs ├── 06_advisories │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs ├── 07_deny_sources │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── deny.toml │ └── src │ │ └── main.rs ├── 08_target_filtering │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── deny.toml │ └── src │ │ └── main.rs ├── 09_bans │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── deny.toml │ └── src │ │ └── main.rs ├── 10_allow_build_script │ ├── Cargo.lock │ ├── Cargo.toml │ ├── deny.toml │ └── src │ │ └── lib.rs ├── 11_feature_bans │ ├── Cargo.lock │ ├── Cargo.toml │ ├── deny.toml │ └── src │ │ └── lib.rs ├── 12_yank_check │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── 13_license_clarification │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── deny.toml │ └── main.rs └── shared │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── deny.toml │ └── lib.rs ├── release.toml ├── resources └── spdx_cache.bin.zstd ├── scripts ├── build-pages.rs ├── check_external.rs └── check_external.sh ├── src ├── advisories.rs ├── advisories │ ├── cfg.rs │ ├── diags.rs │ ├── helpers.rs │ ├── helpers │ │ ├── db.rs │ │ └── index.rs │ └── snapshots │ │ ├── cargo_deny__advisories__cfg__test__deserializes_advisories_cfg-2.snap │ │ ├── cargo_deny__advisories__cfg__test__deserializes_advisories_cfg.snap │ │ ├── cargo_deny__advisories__cfg__test__expands_path.snap │ │ ├── cargo_deny__advisories__cfg__test__rejects_invalid_durations.snap │ │ └── cargo_deny__advisories__cfg__test__warns_on_duplicates.snap ├── bans.rs ├── bans │ ├── builtin_globs.toml │ ├── cfg.rs │ ├── diags.rs │ ├── graph.rs │ └── snapshots │ │ └── cargo_deny__bans__cfg__test__deserializes_ban_cfg.snap ├── cargo-deny │ ├── check.rs │ ├── common.rs │ ├── common │ │ └── cfg.rs │ ├── fetch.rs │ ├── init.rs │ ├── list.rs │ ├── main.rs │ └── stats.rs ├── cfg.rs ├── cfg │ ├── package_spec.rs │ └── snapshots │ │ └── cargo_deny__cfg__package_spec__test__deserializes_package_id.snap ├── diag.rs ├── diag │ ├── general.rs │ ├── grapher.rs │ ├── krate_spans.rs │ └── sink.rs ├── lib.rs ├── licenses.rs ├── licenses │ ├── cfg.rs │ ├── diags.rs │ ├── gather.rs │ └── snapshots │ │ ├── cargo_deny__licenses__cfg__test__deserializes_licenses_cfg-2.snap │ │ └── cargo_deny__licenses__cfg__test__deserializes_licenses_cfg.snap ├── root_cfg.rs ├── sarif.rs ├── sarif │ ├── collector.rs │ └── model.rs ├── snapshots │ ├── cargo_deny__diag__test__codes_unique.snap │ └── cargo_deny__diag__test__codespan_output.snap ├── sources.rs ├── sources │ ├── cfg.rs │ ├── diags.rs │ └── snapshots │ │ ├── cargo_deny__sources__cfg__test__deserializes_sources_cfg-2.snap │ │ └── cargo_deny__sources__cfg__test__deserializes_sources_cfg.snap └── test_utils.rs ├── supply-chain ├── audits.toml ├── config.toml └── imports.lock ├── tests ├── LICENSE-RING ├── LICENSE-SUMMARY ├── advisories.rs ├── bans.rs ├── bans_build.rs ├── cfg │ ├── advisories.toml │ ├── bans.toml │ ├── licenses.toml │ ├── package-specs.toml │ └── sources.toml ├── feature_bans.rs ├── licenses.rs ├── sarif.rs ├── snapshots │ ├── advisories__crates_io_source_replacement-2.snap │ ├── advisories__crates_io_source_replacement.snap │ ├── advisories__detects_unmaintained-2.snap │ ├── advisories__detects_unmaintained-3.snap │ ├── advisories__detects_unmaintained-4.snap │ ├── advisories__detects_unmaintained.snap │ ├── advisories__detects_unsound.snap │ ├── advisories__detects_vulnerabilities.snap │ ├── advisories__detects_yanked-2.snap │ ├── advisories__detects_yanked.snap │ ├── advisories__detects_yanked_sparse.snap │ ├── advisories__downgrades_lint_levels-2.snap │ ├── advisories__downgrades_lint_levels.snap │ ├── advisories__warns_on_ignored_and_withdrawn.snap │ ├── bans__allow_git_wildcards_private_package.snap │ ├── bans__allow_path_wildcards_private_package.snap │ ├── bans__allow_path_wildcards_public_package.snap │ ├── bans__allow_wrappers.snap │ ├── bans__deny_duplicate_workspace_items.snap │ ├── bans__deny_multiple_versions_for_specific_krates.snap │ ├── bans__deny_target_specific_dependencies-2.snap │ ├── bans__deny_target_specific_dependencies-3.snap │ ├── bans__deny_target_specific_dependencies.snap │ ├── bans__deny_wildcards.snap │ ├── bans__deterministic_duplicate_ordering.snap │ ├── bans__disallows_denied.snap │ ├── bans__disallows_denied_with_wrapper.snap │ ├── bans__duplicate_graphs.snap │ ├── bans__ignores_dev.snap │ ├── bans__ignores_unpublished_crates.snap │ ├── bans__unused_skips_generate_warnings.snap │ ├── bans__warns_on_unused_wrappers.snap │ ├── bans_build__allows_build_scripts_or_bypass.snap │ ├── bans_build__allows_by_glob.snap │ ├── bans_build__allows_by_path.snap │ ├── bans_build__detects_build_script_mismatch.snap │ ├── bans_build__detects_native_executables.snap │ ├── bans_build__detects_scripts_by_builtin_glob.snap │ ├── bans_build__detects_scripts_by_shebang.snap │ ├── bans_build__detects_scripts_by_user_extension.snap │ ├── bans_build__emits_unmatched_warnings.snap │ ├── bans_build__skips_matching_build_scripts.snap │ ├── cargo_deny__test__cargo_deny-check.snap │ ├── cargo_deny__test__cargo_deny-fetch.snap │ ├── cargo_deny__test__cargo_deny-init.snap │ ├── cargo_deny__test__cargo_deny-list.snap │ ├── cargo_deny__test__cargo_deny.snap │ ├── feature_bans__allows_external_features.snap │ ├── feature_bans__bans_external_features.snap │ ├── feature_bans__bans_features_from_multiple_versions.snap │ ├── feature_bans__bans_workspace_features.snap │ ├── feature_bans__exact_features.snap │ ├── feature_bans__external_default_features-2.snap │ ├── feature_bans__external_default_features-3.snap │ ├── feature_bans__external_default_features.snap │ ├── feature_bans__external_default_features_allow_override.snap │ ├── feature_bans__external_default_features_denies.snap │ ├── feature_bans__external_default_features_warns_and_denies.snap │ ├── feature_bans__fails_if_not_all_features_allowed.snap │ ├── feature_bans__workspace_default_features-2.snap │ ├── feature_bans__workspace_default_features-3.snap │ ├── feature_bans__workspace_default_features.snap │ ├── feature_bans__workspace_default_features_allow_override.snap │ ├── feature_bans__workspace_default_features_denies.snap │ ├── feature_bans__workspace_default_features_warns_and_denies.snap │ ├── licenses__accepts_exceptions.snap │ ├── licenses__accepts_licenses.snap │ ├── licenses__clarifications.snap │ ├── licenses__detects_unlicensed.snap │ ├── licenses__flags_unencountered_exceptions.snap │ ├── licenses__flags_unencountered_licenses.snap │ ├── licenses__forces_apache_over_pixar.snap │ ├── licenses__handles_dev_dependencies.snap │ ├── licenses__insane_licenses.snap │ ├── licenses__lax_fallback.snap │ ├── licenses__rejects_licenses.snap │ ├── sarif__sarif_advisories.snap │ ├── sarif__sarif_bans.snap │ ├── sarif__sarif_licenses.snap │ ├── sarif__sarif_sources.snap │ ├── sources__allows_bitbucket_org.snap │ ├── sources__allows_git.snap │ ├── sources__allows_github_org.snap │ ├── sources__allows_gitlab_org.snap │ ├── sources__allows_registry_index_git.snap │ ├── sources__allows_registry_index_sparse.snap │ ├── sources__allows_registry_index_sparse_or_git.snap │ └── sources__fails_unknown_git.snap ├── sources.rs └── test_data │ ├── advisories │ ├── 06_Cargo.lock │ └── 06_advisories.json │ ├── allow_wrappers │ ├── dangerous-dep │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── maincrate │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ └── safe-wrapper │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs │ ├── build-bans │ ├── Cargo.lock │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ ├── lib.rs │ │ └── ohno.cs │ ├── cyclic_dependencies │ ├── Cargo.lock │ ├── Cargo.toml │ ├── leaf │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── root │ │ ├── Cargo.toml │ │ └── src │ │ ├── lib.rs │ │ └── main.rs │ ├── duplicates │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── features-galore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── metadata.json │ └── src │ │ └── lib.rs │ ├── features │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── insane-licenses │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── non-crates-io │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── crate-one │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── crate-two │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── src │ │ └── lib.rs │ ├── so-annoying │ ├── Cargo.lock │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-PIXAR │ └── src │ │ └── lib.rs │ ├── sources │ ├── .cargo │ │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── wildcards │ ├── allow-git │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── allow-paths-dependency │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── allow-paths-private │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── allow-paths-public │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── dependency │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── maincrate │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ └── main.rs │ └── workspace │ ├── .cargo │ └── config.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── crates │ ├── member-one │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── member-two │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs │ ├── deny.toml │ └── src │ └── lib.rs └── typos.toml /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | *.zstd -text 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Jake-Shadle 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/SECURITY.md -------------------------------------------------------------------------------- /benches/license_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/benches/license_data.rs -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/clippy.toml -------------------------------------------------------------------------------- /deny.template.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/deny.template.toml -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/deny.toml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /docs/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/book.toml -------------------------------------------------------------------------------- /docs/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/README.md -------------------------------------------------------------------------------- /docs/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/SUMMARY.md -------------------------------------------------------------------------------- /docs/src/checks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/README.md -------------------------------------------------------------------------------- /docs/src/checks/advisories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/advisories/README.md -------------------------------------------------------------------------------- /docs/src/checks/advisories/cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/advisories/cfg.md -------------------------------------------------------------------------------- /docs/src/checks/advisories/diags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/advisories/diags.md -------------------------------------------------------------------------------- /docs/src/checks/bans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/bans/README.md -------------------------------------------------------------------------------- /docs/src/checks/bans/cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/bans/cfg.md -------------------------------------------------------------------------------- /docs/src/checks/bans/diags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/bans/diags.md -------------------------------------------------------------------------------- /docs/src/checks/cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/cfg.md -------------------------------------------------------------------------------- /docs/src/checks/licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/licenses/README.md -------------------------------------------------------------------------------- /docs/src/checks/licenses/cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/licenses/cfg.md -------------------------------------------------------------------------------- /docs/src/checks/licenses/diags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/licenses/diags.md -------------------------------------------------------------------------------- /docs/src/checks/sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/sources/README.md -------------------------------------------------------------------------------- /docs/src/checks/sources/cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/sources/cfg.md -------------------------------------------------------------------------------- /docs/src/checks/sources/diags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/checks/sources/diags.md -------------------------------------------------------------------------------- /docs/src/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/cli/README.md -------------------------------------------------------------------------------- /docs/src/cli/check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/cli/check.md -------------------------------------------------------------------------------- /docs/src/cli/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/cli/common.md -------------------------------------------------------------------------------- /docs/src/cli/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/cli/init.md -------------------------------------------------------------------------------- /docs/src/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/cli/list.md -------------------------------------------------------------------------------- /docs/src/output/advisories.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/output/advisories.svg -------------------------------------------------------------------------------- /docs/src/output/bans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/output/bans.svg -------------------------------------------------------------------------------- /docs/src/output/licenses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/output/licenses.svg -------------------------------------------------------------------------------- /docs/src/output/sources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/docs/src/output/sources.svg -------------------------------------------------------------------------------- /examples/01_allow_license/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/01_allow_license/Cargo.lock -------------------------------------------------------------------------------- /examples/01_allow_license/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/01_allow_license/Cargo.toml -------------------------------------------------------------------------------- /examples/01_allow_license/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/01_allow_license/README.md -------------------------------------------------------------------------------- /examples/01_allow_license/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/01_allow_license/deny.toml -------------------------------------------------------------------------------- /examples/01_allow_license/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /examples/02_deny_license/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/02_deny_license/Cargo.lock -------------------------------------------------------------------------------- /examples/02_deny_license/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/02_deny_license/Cargo.toml -------------------------------------------------------------------------------- /examples/02_deny_license/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/02_deny_license/README.md -------------------------------------------------------------------------------- /examples/02_deny_license/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/02_deny_license/deny.toml -------------------------------------------------------------------------------- /examples/02_deny_license/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /examples/03_deny_copyleft/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/03_deny_copyleft/Cargo.lock -------------------------------------------------------------------------------- /examples/03_deny_copyleft/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/03_deny_copyleft/Cargo.toml -------------------------------------------------------------------------------- /examples/03_deny_copyleft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/03_deny_copyleft/README.md -------------------------------------------------------------------------------- /examples/03_deny_copyleft/deny.toml: -------------------------------------------------------------------------------- 1 | [licenses] 2 | allow = [ "MIT" ] 3 | copyleft = "deny" 4 | -------------------------------------------------------------------------------- /examples/03_deny_copyleft/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /examples/04_gnu_licenses/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/04_gnu_licenses/Cargo.lock -------------------------------------------------------------------------------- /examples/04_gnu_licenses/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/04_gnu_licenses/Cargo.toml -------------------------------------------------------------------------------- /examples/04_gnu_licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/04_gnu_licenses/README.md -------------------------------------------------------------------------------- /examples/04_gnu_licenses/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/04_gnu_licenses/deny.toml -------------------------------------------------------------------------------- /examples/04_gnu_licenses/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /examples/06_advisories/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/06_advisories/Cargo.lock -------------------------------------------------------------------------------- /examples/06_advisories/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/06_advisories/Cargo.toml -------------------------------------------------------------------------------- /examples/06_advisories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/06_advisories/README.md -------------------------------------------------------------------------------- /examples/06_advisories/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /examples/07_deny_sources/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/07_deny_sources/Cargo.lock -------------------------------------------------------------------------------- /examples/07_deny_sources/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/07_deny_sources/Cargo.toml -------------------------------------------------------------------------------- /examples/07_deny_sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/07_deny_sources/README.md -------------------------------------------------------------------------------- /examples/07_deny_sources/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/07_deny_sources/deny.toml -------------------------------------------------------------------------------- /examples/07_deny_sources/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /examples/08_target_filtering/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/08_target_filtering/Cargo.lock -------------------------------------------------------------------------------- /examples/08_target_filtering/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/08_target_filtering/Cargo.toml -------------------------------------------------------------------------------- /examples/08_target_filtering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/08_target_filtering/README.md -------------------------------------------------------------------------------- /examples/08_target_filtering/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/08_target_filtering/deny.toml -------------------------------------------------------------------------------- /examples/08_target_filtering/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /examples/09_bans/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/09_bans/Cargo.lock -------------------------------------------------------------------------------- /examples/09_bans/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/09_bans/Cargo.toml -------------------------------------------------------------------------------- /examples/09_bans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/09_bans/README.md -------------------------------------------------------------------------------- /examples/09_bans/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/09_bans/deny.toml -------------------------------------------------------------------------------- /examples/09_bans/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /examples/10_allow_build_script/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/10_allow_build_script/Cargo.lock -------------------------------------------------------------------------------- /examples/10_allow_build_script/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/10_allow_build_script/Cargo.toml -------------------------------------------------------------------------------- /examples/10_allow_build_script/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/10_allow_build_script/deny.toml -------------------------------------------------------------------------------- /examples/10_allow_build_script/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/10_allow_build_script/src/lib.rs -------------------------------------------------------------------------------- /examples/11_feature_bans/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/11_feature_bans/Cargo.lock -------------------------------------------------------------------------------- /examples/11_feature_bans/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/11_feature_bans/Cargo.toml -------------------------------------------------------------------------------- /examples/11_feature_bans/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/11_feature_bans/deny.toml -------------------------------------------------------------------------------- /examples/11_feature_bans/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/12_yank_check/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/12_yank_check/.cargo/config.toml -------------------------------------------------------------------------------- /examples/12_yank_check/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/12_yank_check/Cargo.lock -------------------------------------------------------------------------------- /examples/12_yank_check/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/12_yank_check/Cargo.toml -------------------------------------------------------------------------------- /examples/12_yank_check/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/13_license_clarification/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/13_license_clarification/Cargo.lock -------------------------------------------------------------------------------- /examples/13_license_clarification/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/13_license_clarification/Cargo.toml -------------------------------------------------------------------------------- /examples/13_license_clarification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/13_license_clarification/README.md -------------------------------------------------------------------------------- /examples/13_license_clarification/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/13_license_clarification/deny.toml -------------------------------------------------------------------------------- /examples/13_license_clarification/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /examples/shared/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/shared/Cargo.lock -------------------------------------------------------------------------------- /examples/shared/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/examples/shared/Cargo.toml -------------------------------------------------------------------------------- /examples/shared/README.md: -------------------------------------------------------------------------------- 1 | # `shared` 2 | 3 | Crate used for path dependency purposes 4 | -------------------------------------------------------------------------------- /examples/shared/deny.toml: -------------------------------------------------------------------------------- 1 | [licenses] 2 | deny = ["MIT", "Apache-2.0"] 3 | -------------------------------------------------------------------------------- /examples/shared/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /release.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/release.toml -------------------------------------------------------------------------------- /resources/spdx_cache.bin.zstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/resources/spdx_cache.bin.zstd -------------------------------------------------------------------------------- /scripts/build-pages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/scripts/build-pages.rs -------------------------------------------------------------------------------- /scripts/check_external.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/scripts/check_external.rs -------------------------------------------------------------------------------- /scripts/check_external.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/scripts/check_external.sh -------------------------------------------------------------------------------- /src/advisories.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories.rs -------------------------------------------------------------------------------- /src/advisories/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories/cfg.rs -------------------------------------------------------------------------------- /src/advisories/diags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories/diags.rs -------------------------------------------------------------------------------- /src/advisories/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories/helpers.rs -------------------------------------------------------------------------------- /src/advisories/helpers/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories/helpers/db.rs -------------------------------------------------------------------------------- /src/advisories/helpers/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories/helpers/index.rs -------------------------------------------------------------------------------- /src/advisories/snapshots/cargo_deny__advisories__cfg__test__deserializes_advisories_cfg-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories/snapshots/cargo_deny__advisories__cfg__test__deserializes_advisories_cfg-2.snap -------------------------------------------------------------------------------- /src/advisories/snapshots/cargo_deny__advisories__cfg__test__deserializes_advisories_cfg.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: src/advisories/cfg.rs 3 | expression: diags 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /src/advisories/snapshots/cargo_deny__advisories__cfg__test__expands_path.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories/snapshots/cargo_deny__advisories__cfg__test__expands_path.snap -------------------------------------------------------------------------------- /src/advisories/snapshots/cargo_deny__advisories__cfg__test__rejects_invalid_durations.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories/snapshots/cargo_deny__advisories__cfg__test__rejects_invalid_durations.snap -------------------------------------------------------------------------------- /src/advisories/snapshots/cargo_deny__advisories__cfg__test__warns_on_duplicates.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/advisories/snapshots/cargo_deny__advisories__cfg__test__warns_on_duplicates.snap -------------------------------------------------------------------------------- /src/bans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/bans.rs -------------------------------------------------------------------------------- /src/bans/builtin_globs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/bans/builtin_globs.toml -------------------------------------------------------------------------------- /src/bans/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/bans/cfg.rs -------------------------------------------------------------------------------- /src/bans/diags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/bans/diags.rs -------------------------------------------------------------------------------- /src/bans/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/bans/graph.rs -------------------------------------------------------------------------------- /src/bans/snapshots/cargo_deny__bans__cfg__test__deserializes_ban_cfg.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/bans/snapshots/cargo_deny__bans__cfg__test__deserializes_ban_cfg.snap -------------------------------------------------------------------------------- /src/cargo-deny/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cargo-deny/check.rs -------------------------------------------------------------------------------- /src/cargo-deny/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cargo-deny/common.rs -------------------------------------------------------------------------------- /src/cargo-deny/common/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cargo-deny/common/cfg.rs -------------------------------------------------------------------------------- /src/cargo-deny/fetch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cargo-deny/fetch.rs -------------------------------------------------------------------------------- /src/cargo-deny/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cargo-deny/init.rs -------------------------------------------------------------------------------- /src/cargo-deny/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cargo-deny/list.rs -------------------------------------------------------------------------------- /src/cargo-deny/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cargo-deny/main.rs -------------------------------------------------------------------------------- /src/cargo-deny/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cargo-deny/stats.rs -------------------------------------------------------------------------------- /src/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cfg.rs -------------------------------------------------------------------------------- /src/cfg/package_spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cfg/package_spec.rs -------------------------------------------------------------------------------- /src/cfg/snapshots/cargo_deny__cfg__package_spec__test__deserializes_package_id.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/cfg/snapshots/cargo_deny__cfg__package_spec__test__deserializes_package_id.snap -------------------------------------------------------------------------------- /src/diag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/diag.rs -------------------------------------------------------------------------------- /src/diag/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/diag/general.rs -------------------------------------------------------------------------------- /src/diag/grapher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/diag/grapher.rs -------------------------------------------------------------------------------- /src/diag/krate_spans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/diag/krate_spans.rs -------------------------------------------------------------------------------- /src/diag/sink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/diag/sink.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/licenses.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/licenses.rs -------------------------------------------------------------------------------- /src/licenses/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/licenses/cfg.rs -------------------------------------------------------------------------------- /src/licenses/diags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/licenses/diags.rs -------------------------------------------------------------------------------- /src/licenses/gather.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/licenses/gather.rs -------------------------------------------------------------------------------- /src/licenses/snapshots/cargo_deny__licenses__cfg__test__deserializes_licenses_cfg-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/licenses/snapshots/cargo_deny__licenses__cfg__test__deserializes_licenses_cfg-2.snap -------------------------------------------------------------------------------- /src/licenses/snapshots/cargo_deny__licenses__cfg__test__deserializes_licenses_cfg.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: src/licenses/cfg.rs 3 | expression: diags 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /src/root_cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/root_cfg.rs -------------------------------------------------------------------------------- /src/sarif.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/sarif.rs -------------------------------------------------------------------------------- /src/sarif/collector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/sarif/collector.rs -------------------------------------------------------------------------------- /src/sarif/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/sarif/model.rs -------------------------------------------------------------------------------- /src/snapshots/cargo_deny__diag__test__codes_unique.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/snapshots/cargo_deny__diag__test__codes_unique.snap -------------------------------------------------------------------------------- /src/snapshots/cargo_deny__diag__test__codespan_output.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/snapshots/cargo_deny__diag__test__codespan_output.snap -------------------------------------------------------------------------------- /src/sources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/sources.rs -------------------------------------------------------------------------------- /src/sources/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/sources/cfg.rs -------------------------------------------------------------------------------- /src/sources/diags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/sources/diags.rs -------------------------------------------------------------------------------- /src/sources/snapshots/cargo_deny__sources__cfg__test__deserializes_sources_cfg-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/sources/snapshots/cargo_deny__sources__cfg__test__deserializes_sources_cfg-2.snap -------------------------------------------------------------------------------- /src/sources/snapshots/cargo_deny__sources__cfg__test__deserializes_sources_cfg.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/sources/snapshots/cargo_deny__sources__cfg__test__deserializes_sources_cfg.snap -------------------------------------------------------------------------------- /src/test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/src/test_utils.rs -------------------------------------------------------------------------------- /supply-chain/audits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/supply-chain/audits.toml -------------------------------------------------------------------------------- /supply-chain/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/supply-chain/config.toml -------------------------------------------------------------------------------- /supply-chain/imports.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/supply-chain/imports.lock -------------------------------------------------------------------------------- /tests/LICENSE-RING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/LICENSE-RING -------------------------------------------------------------------------------- /tests/LICENSE-SUMMARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/LICENSE-SUMMARY -------------------------------------------------------------------------------- /tests/advisories.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/advisories.rs -------------------------------------------------------------------------------- /tests/bans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/bans.rs -------------------------------------------------------------------------------- /tests/bans_build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/bans_build.rs -------------------------------------------------------------------------------- /tests/cfg/advisories.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/cfg/advisories.toml -------------------------------------------------------------------------------- /tests/cfg/bans.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/cfg/bans.toml -------------------------------------------------------------------------------- /tests/cfg/licenses.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/cfg/licenses.toml -------------------------------------------------------------------------------- /tests/cfg/package-specs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/cfg/package-specs.toml -------------------------------------------------------------------------------- /tests/cfg/sources.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/cfg/sources.toml -------------------------------------------------------------------------------- /tests/feature_bans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/feature_bans.rs -------------------------------------------------------------------------------- /tests/licenses.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/licenses.rs -------------------------------------------------------------------------------- /tests/sarif.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/sarif.rs -------------------------------------------------------------------------------- /tests/snapshots/advisories__crates_io_source_replacement-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__crates_io_source_replacement-2.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__crates_io_source_replacement.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__crates_io_source_replacement.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__detects_unmaintained-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__detects_unmaintained-2.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__detects_unmaintained-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__detects_unmaintained-3.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__detects_unmaintained-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__detects_unmaintained-4.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__detects_unmaintained.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__detects_unmaintained.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__detects_unsound.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__detects_unsound.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__detects_vulnerabilities.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__detects_vulnerabilities.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__detects_yanked-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__detects_yanked-2.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__detects_yanked.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__detects_yanked.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__detects_yanked_sparse.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__detects_yanked_sparse.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__downgrades_lint_levels-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__downgrades_lint_levels-2.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__downgrades_lint_levels.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__downgrades_lint_levels.snap -------------------------------------------------------------------------------- /tests/snapshots/advisories__warns_on_ignored_and_withdrawn.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/advisories__warns_on_ignored_and_withdrawn.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__allow_git_wildcards_private_package.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: tests/bans.rs 3 | expression: diags 4 | --- 5 | [] 6 | -------------------------------------------------------------------------------- /tests/snapshots/bans__allow_path_wildcards_private_package.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: tests/bans.rs 3 | expression: diags 4 | --- 5 | [] 6 | -------------------------------------------------------------------------------- /tests/snapshots/bans__allow_path_wildcards_public_package.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__allow_path_wildcards_public_package.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__allow_wrappers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__allow_wrappers.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__deny_duplicate_workspace_items.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__deny_duplicate_workspace_items.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__deny_multiple_versions_for_specific_krates.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__deny_multiple_versions_for_specific_krates.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__deny_target_specific_dependencies-2.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: tests/bans.rs 3 | expression: diags 4 | --- 5 | [] 6 | -------------------------------------------------------------------------------- /tests/snapshots/bans__deny_target_specific_dependencies-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__deny_target_specific_dependencies-3.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__deny_target_specific_dependencies.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__deny_target_specific_dependencies.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__deny_wildcards.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__deny_wildcards.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__deterministic_duplicate_ordering.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__deterministic_duplicate_ordering.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__disallows_denied.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__disallows_denied.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__disallows_denied_with_wrapper.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__disallows_denied_with_wrapper.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__duplicate_graphs.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__duplicate_graphs.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__ignores_dev.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__ignores_dev.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__ignores_unpublished_crates.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__ignores_unpublished_crates.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__unused_skips_generate_warnings.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__unused_skips_generate_warnings.snap -------------------------------------------------------------------------------- /tests/snapshots/bans__warns_on_unused_wrappers.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans__warns_on_unused_wrappers.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__allows_build_scripts_or_bypass.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__allows_build_scripts_or_bypass.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__allows_by_glob.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__allows_by_glob.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__allows_by_path.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__allows_by_path.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__detects_build_script_mismatch.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__detects_build_script_mismatch.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__detects_native_executables.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__detects_native_executables.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__detects_scripts_by_builtin_glob.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__detects_scripts_by_builtin_glob.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__detects_scripts_by_shebang.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__detects_scripts_by_shebang.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__detects_scripts_by_user_extension.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__detects_scripts_by_user_extension.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__emits_unmatched_warnings.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__emits_unmatched_warnings.snap -------------------------------------------------------------------------------- /tests/snapshots/bans_build__skips_matching_build_scripts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/bans_build__skips_matching_build_scripts.snap -------------------------------------------------------------------------------- /tests/snapshots/cargo_deny__test__cargo_deny-check.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/cargo_deny__test__cargo_deny-check.snap -------------------------------------------------------------------------------- /tests/snapshots/cargo_deny__test__cargo_deny-fetch.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/cargo_deny__test__cargo_deny-fetch.snap -------------------------------------------------------------------------------- /tests/snapshots/cargo_deny__test__cargo_deny-init.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/cargo_deny__test__cargo_deny-init.snap -------------------------------------------------------------------------------- /tests/snapshots/cargo_deny__test__cargo_deny-list.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/cargo_deny__test__cargo_deny-list.snap -------------------------------------------------------------------------------- /tests/snapshots/cargo_deny__test__cargo_deny.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/cargo_deny__test__cargo_deny.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__allows_external_features.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__allows_external_features.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__bans_external_features.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__bans_external_features.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__bans_features_from_multiple_versions.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__bans_features_from_multiple_versions.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__bans_workspace_features.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__bans_workspace_features.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__exact_features.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__exact_features.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__external_default_features-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__external_default_features-2.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__external_default_features-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__external_default_features-3.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__external_default_features.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__external_default_features.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__external_default_features_allow_override.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__external_default_features_allow_override.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__external_default_features_denies.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__external_default_features_denies.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__external_default_features_warns_and_denies.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__external_default_features_warns_and_denies.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__fails_if_not_all_features_allowed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__fails_if_not_all_features_allowed.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__workspace_default_features-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__workspace_default_features-2.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__workspace_default_features-3.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: tests/feature_bans.rs 3 | expression: diags 4 | --- 5 | [] 6 | -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__workspace_default_features.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__workspace_default_features.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__workspace_default_features_allow_override.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: tests/feature_bans.rs 3 | expression: diags 4 | --- 5 | [] 6 | -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__workspace_default_features_denies.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__workspace_default_features_denies.snap -------------------------------------------------------------------------------- /tests/snapshots/feature_bans__workspace_default_features_warns_and_denies.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/feature_bans__workspace_default_features_warns_and_denies.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__accepts_exceptions.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__accepts_exceptions.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__accepts_licenses.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__accepts_licenses.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__clarifications.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__clarifications.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__detects_unlicensed.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__detects_unlicensed.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__flags_unencountered_exceptions.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__flags_unencountered_exceptions.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__flags_unencountered_licenses.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__flags_unencountered_licenses.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__forces_apache_over_pixar.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__forces_apache_over_pixar.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__handles_dev_dependencies.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__handles_dev_dependencies.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__insane_licenses.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__insane_licenses.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__lax_fallback.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__lax_fallback.snap -------------------------------------------------------------------------------- /tests/snapshots/licenses__rejects_licenses.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/licenses__rejects_licenses.snap -------------------------------------------------------------------------------- /tests/snapshots/sarif__sarif_advisories.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sarif__sarif_advisories.snap -------------------------------------------------------------------------------- /tests/snapshots/sarif__sarif_bans.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sarif__sarif_bans.snap -------------------------------------------------------------------------------- /tests/snapshots/sarif__sarif_licenses.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sarif__sarif_licenses.snap -------------------------------------------------------------------------------- /tests/snapshots/sarif__sarif_sources.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sarif__sarif_sources.snap -------------------------------------------------------------------------------- /tests/snapshots/sources__allows_bitbucket_org.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sources__allows_bitbucket_org.snap -------------------------------------------------------------------------------- /tests/snapshots/sources__allows_git.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sources__allows_git.snap -------------------------------------------------------------------------------- /tests/snapshots/sources__allows_github_org.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sources__allows_github_org.snap -------------------------------------------------------------------------------- /tests/snapshots/sources__allows_gitlab_org.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sources__allows_gitlab_org.snap -------------------------------------------------------------------------------- /tests/snapshots/sources__allows_registry_index_git.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sources__allows_registry_index_git.snap -------------------------------------------------------------------------------- /tests/snapshots/sources__allows_registry_index_sparse.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sources__allows_registry_index_sparse.snap -------------------------------------------------------------------------------- /tests/snapshots/sources__allows_registry_index_sparse_or_git.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sources__allows_registry_index_sparse_or_git.snap -------------------------------------------------------------------------------- /tests/snapshots/sources__fails_unknown_git.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/snapshots/sources__fails_unknown_git.snap -------------------------------------------------------------------------------- /tests/sources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/sources.rs -------------------------------------------------------------------------------- /tests/test_data/advisories/06_Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/advisories/06_Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/advisories/06_advisories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/advisories/06_advisories.json -------------------------------------------------------------------------------- /tests/test_data/allow_wrappers/dangerous-dep/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/allow_wrappers/dangerous-dep/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/allow_wrappers/dangerous-dep/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/allow_wrappers/dangerous-dep/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/allow_wrappers/dangerous-dep/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/allow_wrappers/dangerous-dep/src/lib.rs -------------------------------------------------------------------------------- /tests/test_data/allow_wrappers/maincrate/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/allow_wrappers/maincrate/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/allow_wrappers/maincrate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/allow_wrappers/maincrate/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/allow_wrappers/maincrate/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/allow_wrappers/safe-wrapper/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/allow_wrappers/safe-wrapper/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/allow_wrappers/safe-wrapper/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/allow_wrappers/safe-wrapper/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/allow_wrappers/safe-wrapper/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/allow_wrappers/safe-wrapper/src/lib.rs -------------------------------------------------------------------------------- /tests/test_data/build-bans/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/build-bans/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/build-bans/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/build-bans/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/build-bans/build.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/build-bans/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/build-bans/src/ohno.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/cyclic_dependencies/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/cyclic_dependencies/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/cyclic_dependencies/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["root", "leaf"] 3 | -------------------------------------------------------------------------------- /tests/test_data/cyclic_dependencies/leaf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/cyclic_dependencies/leaf/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/cyclic_dependencies/leaf/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn leaf() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/cyclic_dependencies/root/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/cyclic_dependencies/root/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/cyclic_dependencies/root/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn root() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/cyclic_dependencies/root/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/duplicates/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/duplicates/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/duplicates/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/duplicates/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/duplicates/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/duplicates/src/lib.rs -------------------------------------------------------------------------------- /tests/test_data/features-galore/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/features-galore/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/features-galore/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/features-galore/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/features-galore/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/features-galore/metadata.json -------------------------------------------------------------------------------- /tests/test_data/features-galore/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/features/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/features/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/features/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/features/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/features/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/insane-licenses/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/insane-licenses/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/insane-licenses/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/insane-licenses/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/insane-licenses/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/insane-licenses/src/lib.rs -------------------------------------------------------------------------------- /tests/test_data/non-crates-io/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/non-crates-io/.cargo/config.toml -------------------------------------------------------------------------------- /tests/test_data/non-crates-io/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/non-crates-io/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/non-crates-io/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/non-crates-io/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/non-crates-io/crate-one/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/non-crates-io/crate-one/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/non-crates-io/crate-one/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/non-crates-io/crate-two/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/non-crates-io/crate-two/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/non-crates-io/crate-two/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/non-crates-io/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/so-annoying/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/so-annoying/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/so-annoying/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/so-annoying/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/so-annoying/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/so-annoying/LICENSE-APACHE -------------------------------------------------------------------------------- /tests/test_data/so-annoying/LICENSE-PIXAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/so-annoying/LICENSE-PIXAR -------------------------------------------------------------------------------- /tests/test_data/so-annoying/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/sources/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/sources/.cargo/config.toml -------------------------------------------------------------------------------- /tests/test_data/sources/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/sources/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/sources/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/sources/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/sources/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/sources/src/lib.rs -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-git/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/allow-git/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-git/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/allow-git/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-git/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-paths-dependency/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/allow-paths-dependency/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-paths-dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-paths-private/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/allow-paths-private/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-paths-private/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/allow-paths-private/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-paths-private/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-paths-public/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/allow-paths-public/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-paths-public/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/allow-paths-public/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/wildcards/allow-paths-public/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/wildcards/dependency/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/dependency/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/wildcards/dependency/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/dependency/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/wildcards/dependency/src/lib.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/wildcards/maincrate/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/maincrate/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/wildcards/maincrate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/wildcards/maincrate/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/wildcards/maincrate/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /tests/test_data/workspace/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/workspace/.cargo/config.toml -------------------------------------------------------------------------------- /tests/test_data/workspace/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/workspace/Cargo.lock -------------------------------------------------------------------------------- /tests/test_data/workspace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/workspace/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/workspace/crates/member-one/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/workspace/crates/member-one/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/workspace/crates/member-one/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/workspace/crates/member-two/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/workspace/crates/member-two/Cargo.toml -------------------------------------------------------------------------------- /tests/test_data/workspace/crates/member-two/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_data/workspace/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/tests/test_data/workspace/deny.toml -------------------------------------------------------------------------------- /tests/test_data/workspace/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmbarkStudios/cargo-deny/HEAD/typos.toml --------------------------------------------------------------------------------