commit 9f4fe5c6bb0d6b92b67cbc46c99d746aaf0201af Author: Colin Woodbury Date: Wed Jun 10 13:06:40 2020 -0700 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8303f51 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "cargo-aur" +version = "1.0.0" +authors = ["Colin Woodbury "] +edition = "2018" +description = "Prepare Rust projects to be released on the Arch Linux User Repository." +homepage = "https://github.com/fosskers/cargo-aur" +repository = "https://github.com/fosskers/cargo-aur" +readme = "README.md" +license = "MIT" +keywords = ["cargo", "subcommand", "archlinux", "aur"] +categories = ["cargo-plugins", "command-line-utilities"] + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}