diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..8442a26 --- /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 = "factoriauth" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..13dc527 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,13 @@ +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[package] +name = "factoriauth" +description = "An unofficial authentication server for Factorio" +version = "0.1.0" +authors = ["Lambda"] +edition = "2021" +license = "AGPL-3.0-or-later" +keywords = ["offline"] +categories = ["authentication", "games"] + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..109c641 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,21 @@ +/* + factoriauth - An unofficial authentication server for Factorio + Copyright (C) 2024 lambda@xiretza.xyz + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + +fn main() { + println!("Hello, world!"); +}