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
2 changes: 1 addition & 1 deletion examples/tower_defense/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Tower defense on-chain game example using cougr-core ECS framewor
crate-type = ["cdylib", "rlib"]

[dependencies]
cougr-core = { path = "../../" }
cougr-core = "1.0.0"
soroban-sdk = "25.1.0"

[dev-dependencies]
Expand Down
20 changes: 8 additions & 12 deletions examples/trading_card_game/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,31 +1,27 @@
[package]
name = "trading_card_game"
version = "0.1.0"
name = "tower_defense"
version = "0.0.1"
edition = "2021"
publish = false
description = "Trading Card Game on-chain using Cougr-Core ECS framework — demonstrates atomic multi-action turns via BatchBuilder on Stellar Soroban"
license = "MIT OR Apache-2.0"
authors = ["Cougr Contributors"]
description = "Tower defense on-chain game example using cougr-core ECS framework"

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
cougr-core = "1.0.0"
soroban-sdk = "25.1.0"
cougr-core = { path = "../../" }

[dev-dependencies]
soroban-sdk = { version = "25.1.0", features = ["testutils"] }

[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
codegen-units = 1
panic = "abort"

[profile.release-with-logs]
inherits = "release"
debug-assertions = true
debug-assertions = true
Loading