project setup

This commit is contained in:
Pihkaal
2024-01-17 00:14:12 +01:00
parent 2543e3d77f
commit 61cc2a8235
3 changed files with 26 additions and 0 deletions

16
.gitignore vendored Normal file
View File

@@ -0,0 +1,16 @@
# Project
.notes
# Build
target
debug
# Cargo
Cargo.lock
# rustfmt
**/*.rs.bk
# MSVC Windows build
.pdb

5
Cargo.toml Normal file
View File

@@ -0,0 +1,5 @@
[package]
name = "tlock"
version = "0.0.1"
edition = "2021"

5
src/main.rs Normal file
View File

@@ -0,0 +1,5 @@
use std::time::SystemTime;
fn main() {
println!("{:?}", SystemTime::now());
}