From 5728e83ce0dc7d7d18c330fb8c45bb40928d6956 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Thu, 1 Jan 2026 14:57:03 +0000 Subject: [PATCH] Fix minimum required CXX version --- cpp/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/Cargo.toml b/cpp/Cargo.toml index 1bf51b23..33619803 100644 --- a/cpp/Cargo.toml +++ b/cpp/Cargo.toml @@ -8,13 +8,13 @@ edition.workspace = true license.workspace = true [dependencies] -cxx = { version = "1.0.142", features = ["c++17"] } +cxx = { version = "1.0.192", features = ["c++17"] } delegate = ">= 0.5.1, < 0.14" libloot = { path = ".." } libloot-ffi-errors = { path = "../ffi-errors" } [build-dependencies] -cxx-build = "1.0.142" +cxx-build = "1.0.192" [lib] crate-type = ["staticlib"]