# HG changeset patch # User AnaTofuZ # Date 1603335486 -32400 # Node ID 3ef828bc5261706956f691d08058bc219b406ba6 cargo new diff -r 000000000000 -r 3ef828bc5261 .gitignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.gitignore Thu Oct 22 11:58:06 2020 +0900 @@ -0,0 +1,34 @@ +/target + +# Created by https://www.toptal.com/developers/gitignore/api/macos +# Edit at https://www.toptal.com/developers/gitignore?templates=macos + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# End of https://www.toptal.com/developers/gitignore/api/macos diff -r 000000000000 -r 3ef828bc5261 Cargo.toml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Cargo.toml Thu Oct 22 11:58:06 2020 +0900 @@ -0,0 +1,9 @@ +[package] +name = "ie-virsh" +version = "0.1.0" +authors = ["AnaTofuZ "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff -r 000000000000 -r 3ef828bc5261 src/main.rs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main.rs Thu Oct 22 11:58:06 2020 +0900 @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}