add rust support to config

This commit is contained in:
Schrottkatze 2024-04-16 21:37:01 +02:00
parent 5c2deec279
commit 52a6173f0b
Signed by: schrottkatze
SSH key fingerprint: SHA256:hXb3t1vINBFCiDCmhRABHX5ocdbLiKyCdKI4HK2Rbbc
7 changed files with 126 additions and 30 deletions

7
programs/jrnl/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 = 3
[[package]]
name = "jrnl"
version = "0.1.0"

6
programs/jrnl/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "jrnl"
version = "0.1.0"
edition = "2021"
[dependencies]

View file

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