feat: Initial commit

Basically the output of cargo init with some
extra metadata added to the package
This commit is contained in:
Rostislav Raykov 2019-09-17 13:44:12 +02:00
parent 0c07781bdc
commit 4feaf4a17d
3 changed files with 23 additions and 0 deletions

6
Cargo.lock generated Normal file
View file

@ -0,0 +1,6 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "cloudflare-ddns"
version = "0.1.0"

14
Cargo.toml Normal file
View file

@ -0,0 +1,14 @@
[package]
name = "cloudflare-ddns"
version = "0.1.0"
authors = ["Rostislav Raykov <z@zbrox.org>"]
edition = "2018"
description = "A simple CLI tool to use Cloudflare's free DDNS service"
repository = "git@github.com:zbrox/cloudflare-ddns.git"
keywords = ["cloudflare", "ddns", "cli"]
categories = ["command-line-utilities"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}