diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ee8c801..da885b4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -94,20 +94,6 @@ jobs: - name: Run cargo fmt run: cargo fmt --all -- --check - deny: - name: Deny - runs-on: ubuntu-latest - steps: - - name: Checkout sources - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@stable - - name: Install tooling - run: | - cargo install cargo-quickinstall - cargo quickinstall cargo-deny - - name: Run cargo deny - run: cargo deny check - doc: name: Doc runs-on: ubuntu-latest diff --git a/deny.toml b/deny.toml deleted file mode 100644 index 577f674..0000000 --- a/deny.toml +++ /dev/null @@ -1,54 +0,0 @@ -[advisories] -db-path = "~/.cargo/advisory-db" -db-urls = ["https://github.com/rustsec/advisory-db"] -vulnerability = "deny" -unmaintained = "deny" -yanked = "deny" -notice = "deny" -ignore = [] - -[licenses] -unlicensed = "deny" -allow = [ - "MIT", - "Apache-2.0", -] -copyleft = "deny" -allow-osi-fsf-free = "neither" -default = "deny" -confidence-threshold = 0.8 -exceptions = [ - { allow = ["BSD-3-Clause"], name = "instant" }, - { allow = ["Unicode-DFS-2016"], name = "unicode-ident" }, -] - -[bans] -multiple-versions = "deny" -# allowed while working with git deps -# wildcards = "deny" -# Certain crates/versions that will be skipped when doing duplicate detection. -skip = [ - { name = "hashbrown", version = "0.12" }, - { name = "indexmap", version = "1.9" }, - { name = "num_enum", version = "0.5" }, - { name = "num_enum_derive", version = "0.5" }, - { name = "regex-automata", version = "0.1" }, - { name = "regex-syntax", version = "0.6" }, - { name = "syn", version = "1.0" }, - { name = "windows-targets", version = "0.42" }, - { name = "windows_aarch64_gnullvm", version = "0.42" }, - { name = "windows_aarch64_msvc", version = "0.42" }, - { name = "windows_i686_gnu", version = "0.42" }, - { name = "windows_i686_msvc", version = "0.42" }, - { name = "windows_x86_64_gnu", version = "0.42" }, - { name = "windows_x86_64_gnullvm", version = "0.42" }, - { name = "windows_x86_64_msvc", version = "0.42" }, -] - -[sources] -unknown-registry = "deny" -unknown-git = "deny" -allow-registry = ["https://github.com/rust-lang/crates.io-index"] -allow-git = [ - "https://github.com/bevyengine/bevy", -]