From 909f2a4e1f827a4157a2cc83f3ed5904e5504738 Mon Sep 17 00:00:00 2001 From: NiDimi Date: Fri, 3 Oct 2025 18:16:24 +0100 Subject: [PATCH] Modified allowed licences --- .gitignore | 3 +++ Cargo.toml | 1 - deny.toml | 6 ++---- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index aa4af6d..b6e2b21 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,6 @@ lcov.info # Local settings .soroban .stellar + +# Contracts +contracts/**/test_snapshots diff --git a/Cargo.toml b/Cargo.toml index b32ca07..fb06788 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,6 @@ edition = "2024" repository = "https://github.com/NethermindEth/stellar-risc0-verifier" license = "Apache-2.0" - [workspace.dependencies] soroban-sdk = "23.0.2" diff --git a/deny.toml b/deny.toml index 941974d..3d30343 100644 --- a/deny.toml +++ b/deny.toml @@ -30,6 +30,7 @@ unmaintained = "workspace" allow = [ "0BSD", "Apache-2.0", + "Apache-2.0 WITH LLVM-exception", "BSD-2-Clause", "BSD-3-Clause", "BSD-2-Clause-Patent", @@ -58,10 +59,7 @@ allow = [ "Xnet", "Zlib", ] -exceptions = [ - { name = "wasmparser", version = "*", allow = ["Apache-2.0 WITH LLVM-exception", "Apache-2.0", "MIT"] }, - { name = "wasmparser-nostd", version = "*", allow = ["Apache-2.0 WITH LLVM-exception", "Apache-2.0", "MIT"] } -] + confidence-threshold = 0.8 unused-allowed-license = "allow"