Compare commits

...

2 Commits

Author SHA1 Message Date
c75123042b Initial Commit 2026-04-01 01:29:48 +02:00
d062e36171 Initial Commit 2026-04-01 01:28:41 +02:00
4 changed files with 10 additions and 6 deletions

6
.gitignore vendored
View File

@@ -10,9 +10,3 @@ target/
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# RustRover
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# 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/

6
Cargo.toml Normal file
View File

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

View File

@@ -16,3 +16,4 @@ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE A
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.

3
src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}