A .gitignore => .gitignore +1 -0
A Cargo.lock => Cargo.lock +7 -0
@@ 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"
A Cargo.toml => Cargo.toml +6 -0
@@ 0,0 1,6 @@
+[workspace]
+resolver = "2"
+
+members = [
+ "sdbclient"
+]
R LICENSE => GPL-3.0-only.txt +0 -0
A sdbclient/.gitignore => sdbclient/.gitignore +1 -0
A sdbclient/Cargo.toml => sdbclient/Cargo.toml +13 -0
@@ 0,0 1,13 @@
+[package]
+name = "sdbclient"
+version = "0.1.0"
+authors = ["Jonni Liljamo <jonni@liljamo.com>"]
+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]
A sdbclient/LICENSE => sdbclient/LICENSE +8 -0
@@ 0,0 1,8 @@
+sdbclient is a client for a deck building game.
+Copyright (C) 2022 Jonni Liljamo <jonni@liljamo.com>
+
+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 <http://www.gnu.org/licenses/>.
A sdbclient/README.md => sdbclient/README.md +1 -0
@@ 0,0 1,1 @@
+# Deck Builder Client
A sdbclient/src/main.rs => sdbclient/src/main.rs +11 -0
@@ 0,0 1,11 @@
+/*
+ * This file is part of sdbclient
+ * Copyright (C) 2022 Jonni Liljamo <jonni@liljamo.com>
+ *
+ * Licensed under GPL-3.0-only.
+ * See LICENSE for licensing information.
+ */
+
+fn main() {
+ println!("Hello, world!");
+}