started infinitime-cli

This commit is contained in:
thatscringebro 2025-04-30 14:04:02 -04:00
commit c66298428b
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
**/Cargo.lock
**/target/*

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "infinitime-cli"
version = "0.1.0"
edition = "2024"
[dependencies]
infinitime-rs = { git = "https://gitea.homelabdeouf.xyz/thatscringebro/infinitime-rs", version = "0.1.0" }

5
src/main.rs Normal file
View File

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