From 60f624f67488b8dd2208181febb60ccf5f1bd85a Mon Sep 17 00:00:00 2001 From: Jeremy HERGAULT Date: Fri, 6 Mar 2026 09:27:44 +0100 Subject: [PATCH 1/2] feat: update for release Signed-off-by: Jeremy HERGAULT --- Cargo.toml | 4 ++-- README.md | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a0958fd..6e6015b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "cppshift" version = "0.1.0" -authors = ["Jérémy HERGAULT"] +authors = ["Jérémy HERGAULT", "Enzo PASQUALINI"] description = "CPP parser and transpiler" -repository = "https://github.com/reneca/cppshift" +repository = "https://github.com/worldline/cppshift" edition = "2024" license = "Apache-2.0" diff --git a/README.md b/README.md index f1d62a1..dd2f4aa 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # CppShift +[github](https://github.com/worldline/cppshift) +[crates-io](https://crates.io/crates/cppshift) +[docs-rs](https://docs.rs/cppshift) +[build status](https://github.com/worldline/cppshift/actions?query=branch%3Amain) +[dependency status](https://deps.rs/repo/github/worldline/cppshift) + This project provide a C++ scanner and a transpiler. The goal is not to use compiled C++ like [cxx](https://cxx.rs/) can do, but to convert c++ code into native Rust. From 83da60eb10e74b30d1caaec9a53c8a03ccab39cb Mon Sep 17 00:00:00 2001 From: Jeremy HERGAULT Date: Fri, 6 Mar 2026 09:31:39 +0100 Subject: [PATCH 2/2] fix: update to latest Cargo version Signed-off-by: Jeremy HERGAULT --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6e6015b..e52310d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,5 +13,5 @@ thiserror = "2" [dev-dependencies] tokio = { version = "1", features = ["macros"] } -reqwest = "0.12" +reqwest = "0.13" glob = "0.3"