Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand All @@ -13,5 +13,5 @@ thiserror = "2"

[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
reqwest = "0.12"
reqwest = "0.13"
glob = "0.3"
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CppShift

[<img alt="github" src="https://img.shields.io/badge/github-46beaa?style=for-the-badge&labelColor=555555&logo=github" height="20">](https://github.com/worldline/cppshift)
[<img alt="crates-io" src="https://img.shields.io/badge/crates.io-ffeb78?style=for-the-badge&labelColor=555555&logo=rust" height="20">](https://crates.io/crates/cppshift)
[<img alt="docs-rs" src="https://img.shields.io/badge/docs.rs-41b4d2?style=for-the-badge&labelColor=555555&logo=docs.rs" height="20">](https://docs.rs/cppshift)
[<img alt="build status" src="https://img.shields.io/github/actions/workflow/status/worldline/cppshift/ci.yml?branch%3Amain&style=for-the-badge" height="20">](https://github.com/worldline/cppshift/actions?query=branch%3Amain)
[<img alt="dependency status" src="https://img.shields.io/deps-rs/repo/github/worldline/cppshift?style=for-the-badge" height="20">](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.

Expand Down