From aeed716252810873b26cc62e1e3c7ceda36e4879 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Wed, 30 Nov 2022 10:09:48 +0200 Subject: [PATCH] Create cargo project for sdbclient --- .gitignore | 1 + Cargo.lock | 7 +++++++ Cargo.toml | 6 ++++++ LICENSE => GPL-3.0-only.txt | 0 sdbclient/.gitignore | 1 + sdbclient/Cargo.toml | 13 +++++++++++++ sdbclient/LICENSE | 8 ++++++++ sdbclient/README.md | 1 + sdbclient/src/main.rs | 11 +++++++++++ 9 files changed, 48 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml rename LICENSE => GPL-3.0-only.txt (100%) create mode 100644 sdbclient/.gitignore create mode 100644 sdbclient/Cargo.toml create mode 100644 sdbclient/LICENSE create mode 100644 sdbclient/README.md create mode 100644 sdbclient/src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f7896d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +target/ diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..762e9fb --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "sdbclient" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..53d7b19 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[workspace] +resolver = "2" + +members = [ + "sdbclient" +] diff --git a/LICENSE b/GPL-3.0-only.txt similarity index 100% rename from LICENSE rename to GPL-3.0-only.txt diff --git a/sdbclient/.gitignore b/sdbclient/.gitignore new file mode 100644 index 0000000..2f7896d --- /dev/null +++ b/sdbclient/.gitignore @@ -0,0 +1 @@ +target/ diff --git a/sdbclient/Cargo.toml b/sdbclient/Cargo.toml new file mode 100644 index 0000000..f72bef0 --- /dev/null +++ b/sdbclient/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "sdbclient" +version = "0.1.0" +authors = ["Jonni Liljamo "] +edition = "2021" +description = "Client for a deck building game" +readme = "README.md" +repository = "https://src.quest/skye/deck-builder" +license = "GPL-3.0-only" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/sdbclient/LICENSE b/sdbclient/LICENSE new file mode 100644 index 0000000..1f48461 --- /dev/null +++ b/sdbclient/LICENSE @@ -0,0 +1,8 @@ +sdbclient is a client for a deck building game. +Copyright (C) 2022 Jonni Liljamo + +This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/sdbclient/README.md b/sdbclient/README.md new file mode 100644 index 0000000..9d223f9 --- /dev/null +++ b/sdbclient/README.md @@ -0,0 +1 @@ +# Deck Builder Client diff --git a/sdbclient/src/main.rs b/sdbclient/src/main.rs new file mode 100644 index 0000000..6838a41 --- /dev/null +++ b/sdbclient/src/main.rs @@ -0,0 +1,11 @@ +/* + * This file is part of sdbclient + * Copyright (C) 2022 Jonni Liljamo + * + * Licensed under GPL-3.0-only. + * See LICENSE for licensing information. + */ + +fn main() { + println!("Hello, world!"); +} -- 2.44.1