Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement pawn movement #6

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion grpc/.gitignore → .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/rust,macos,windows,linux,jetbrains+all,visualstudiocode
# End of https://www.toptal.com/developers/gitignore/api/rust,macos,windows,linux,jetbrains+all,visualstudiocode
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[workspace]
members = ["chess_engine", "cli-chess"]
8 changes: 8 additions & 0 deletions chess_engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "chess_engine"
version = "0.1.0"
edition = "2021"

[lib]
name = "chess_engine"
path = "src/lib.rs"
Empty file added chess_engine/src/lib.rs
Empty file.
4 changes: 1 addition & 3 deletions grpc/Cargo.toml → cli-chess/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
[package]
name = "grpc"
name = "cli-chess"
version = "0.1.0"
edition = "2021"

[dependencies]
3 changes: 3 additions & 0 deletions cli-chess/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, World!");
}
3 changes: 0 additions & 3 deletions grpc/src/main.rs

This file was deleted.