diff --git a/.gitignore b/.gitignore index 0b188bc..37eb6bd 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ target/ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ +.idea/ +.vscode diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..3789b38 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "ubw-sward" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..333a72a --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,3 @@ +[workspace] +resolver = "3" +members = ["ubw-sward"] diff --git a/README.md b/README.md index 8fd1e95..3604c8f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ -# ubw-network +# UBW Network + +Unlimited Blade Works. diff --git a/ubw-sward/Cargo.toml b/ubw-sward/Cargo.toml new file mode 100644 index 0000000..bf47844 --- /dev/null +++ b/ubw-sward/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "ubw-sward" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/ubw-sward/src/lib.rs b/ubw-sward/src/lib.rs new file mode 100644 index 0000000..e69de29