initialize project

This commit is contained in:
2025-09-01 02:56:14 +09:00
parent f533842546
commit 48fe34631c
6 changed files with 21 additions and 2 deletions

3
.gitignore vendored
View File

@@ -15,4 +15,5 @@ target/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # 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 # 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. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ .idea/
.vscode

7
Cargo.lock generated Normal file
View File

@@ -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"

3
Cargo.toml Normal file
View File

@@ -0,0 +1,3 @@
[workspace]
resolver = "3"
members = ["ubw-sward"]

View File

@@ -1,2 +1,4 @@
# ubw-network # UBW Network
Unlimited Blade Works.

6
ubw-sward/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "ubw-sward"
version = "0.1.0"
edition = "2024"
[dependencies]

0
ubw-sward/src/lib.rs Normal file
View File