From bed93fd58c4481dbdb5add9b6a4c46cd184501e7 Mon Sep 17 00:00:00 2001 From: jutty Date: Tue, 24 Mar 2026 12:01:19 -0300 Subject: [PATCH] Rust: Scaffold Cargo project --- rust/.gitignore | 1 + rust/Cargo.lock | 7 +++++++ rust/Cargo.toml | 14 ++++++++++++++ rust/src/main.rs | 3 +++ 4 files changed, 25 insertions(+) create mode 100644 rust/.gitignore create mode 100644 rust/Cargo.lock create mode 100644 rust/Cargo.toml create mode 100644 rust/src/main.rs diff --git a/rust/.gitignore b/rust/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/rust/.gitignore @@ -0,0 +1 @@ +/target diff --git a/rust/Cargo.lock b/rust/Cargo.lock new file mode 100644 index 0000000..c3ccd82 --- /dev/null +++ b/rust/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "tori" +version = "0.8.0" diff --git a/rust/Cargo.toml b/rust/Cargo.toml new file mode 100644 index 0000000..415bdfc --- /dev/null +++ b/rust/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "tori" +version = "0.8.0" +description = "Track your system configuration and replicate it" +license = "GPL-3.0-only" + +repository = "https://codeberg.org/tori/iganaq" +homepage = "https://tori.jutty.dev/" +documentation = "https://tori.jutty.dev/docs/" + +edition = "2024" +rust-version = "1.94.0" + +[dependencies] diff --git a/rust/src/main.rs b/rust/src/main.rs new file mode 100644 index 0000000..66449d7 --- /dev/null +++ b/rust/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, Rust!"); +}