Skip to content
Merged
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
target/

# Cargo
Cargo.lock
**/*.rs.bk
*.pdb

Expand Down
8 changes: 1 addition & 7 deletions examples/ai_dungeon_master_arena/.gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
# Build artifacts
target/
**/*.rs.bk
*.wasm

# Soroban
.soroban/
test_snapshots/

# IDE
.idea/
.vscode/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db
8 changes: 1 addition & 7 deletions examples/angry_birds/.gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
# Build artifacts
target/
**/*.rs.bk
*.wasm

# Soroban
.soroban/
test_snapshots/

# IDE
.idea/
.vscode/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db
8 changes: 1 addition & 7 deletions examples/arkanoid/.gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
# Build artifacts
target/
**/*.rs.bk
*.wasm

# Soroban
.soroban/
test_snapshots/

# IDE
.idea/
.vscode/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db
1 change: 1 addition & 0 deletions examples/asteroids/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ target
.stellar

/test_snapshots/
# Added by hygiene enforcement (#225)
target/
*.wasm
2 changes: 1 addition & 1 deletion examples/asteroids/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
description = "Arcade asteroid shooter with entity movement and collision systems"
name = "asteroids"
version = "0.0.0"
edition = "2021"
publish = false
description = "Arcade asteroid shooter with entity-heavy movement and collisions"

[lib]
crate-type = ["lib", "cdylib"]
Expand Down
Loading
Loading