diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 1d419eac..bd8d4fbc 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Check dependencies - uses: EmbarkStudios/cargo-deny-action@v1 + uses: EmbarkStudios/cargo-deny-action@v2 diff --git a/deny.toml b/deny.toml index 3ca9278c..58c52ef0 100644 --- a/deny.toml +++ b/deny.toml @@ -1,37 +1,26 @@ [advisories] -unmaintained = "deny" yanked = "deny" -notice = "deny" [licenses] -copyleft = "deny" -allow-osi-fsf-free = "either" allow = [ "MIT", + "MIT-0", "Apache-2.0", "BSD-2-Clause", "BSD-3-Clause", + "Unicode-DFS-2016", + "Unicode-3.0", + "Zlib", + "ISC", + "CC0-1.0", + "BSL-1.0", ] -[[licenses.clarify]] -name = "stretch" -expression = "MIT" -license-files = [] - [[licenses.exceptions]] # https://github.com/emilk/egui/issues/2321 -allow = ["LicenseRef-UFL-1.0"] +allow = ["LicenseRef-UFL-1.0", "OFL-1.1"] name = "epaint" -[bans] -multiple-versions = "allow" -wildcards = "allow" - -[sources] -unknown-registry = "deny" -unknown-git = "deny" -allow-git = [ - # Unreleased version for steamworks, need release with PR https://github.com/Noxime/steamworks-rs/pull/134 - "https://github.com/Noxime/steamworks-rs" -] +[bans] +multiple-versions = "allow" \ No newline at end of file diff --git a/renet_netcode/Cargo.toml b/renet_netcode/Cargo.toml index 8be41f8a..bdc3d534 100644 --- a/renet_netcode/Cargo.toml +++ b/renet_netcode/Cargo.toml @@ -2,6 +2,10 @@ name = "renet_netcode" version = "0.0.1" edition = "2021" +keywords = ["gamedev", "networking", "transport"] +description = "netcode transport for the renet crate: Server/Client network library for multiplayer games" +repository = "https://github.com/lucaspoffo/renet" +license = "MIT OR Apache-2.0" [features] bevy = ["dep:bevy_ecs"]