Rust: Scaffold Cargo project

This commit is contained in:
Juno Takano 2026-03-24 12:01:19 -03:00
commit bed93fd58c
4 changed files with 25 additions and 0 deletions

1
rust/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

7
rust/Cargo.lock generated Normal file
View file

@ -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"

14
rust/Cargo.toml Normal file
View file

@ -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]

3
rust/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, Rust!");
}