mirror of
https://github.com/fosskers/cargo-aur.git
synced 2026-03-12 01:44:05 -05:00
Initial commit
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/target
|
||||
14
Cargo.toml
Normal file
14
Cargo.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
[package]
|
||||
name = "cargo-aur"
|
||||
version = "1.0.0"
|
||||
authors = ["Colin Woodbury <colin@fosskers.ca>"]
|
||||
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]
|
||||
3
src/main.rs
Normal file
3
src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Reference in New Issue
Block a user