From 4feaf4a17dc6ada863211463266e698a18bc8d1a Mon Sep 17 00:00:00 2001 From: Rostislav Raykov Date: Tue, 17 Sep 2019 13:44:12 +0200 Subject: [PATCH] feat: Initial commit Basically the output of cargo init with some extra metadata added to the package --- Cargo.lock | 6 ++++++ Cargo.toml | 14 ++++++++++++++ src/main.rs | 3 +++ 3 files changed, 23 insertions(+) create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..b78a2ec --- /dev/null +++ b/Cargo.lock @@ -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" + diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..eecaaae --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "cloudflare-ddns" +version = "0.1.0" +authors = ["Rostislav Raykov "] +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] 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!"); +}