project setup
This commit is contained in:
16
.gitignore
vendored
Normal file
16
.gitignore
vendored
Normal 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
5
Cargo.toml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
[package]
|
||||||
|
name = "tlock"
|
||||||
|
version = "0.0.1"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
5
src/main.rs
Normal file
5
src/main.rs
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
use std::time::SystemTime;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
println!("{:?}", SystemTime::now());
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user