Rust: Scaffold Cargo project
This commit is contained in:
parent
9e402df786
commit
bed93fd58c
4 changed files with 25 additions and 0 deletions
1
rust/.gitignore
vendored
Normal file
1
rust/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
/target
|
||||||
7
rust/Cargo.lock
generated
Normal file
7
rust/Cargo.lock
generated
Normal 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
14
rust/Cargo.toml
Normal 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
3
rust/src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, Rust!");
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue