[package]
edition = "2021"
rust-version = "1.70.0"
name = "cougr-core"
version = "1.0.0"
build = false
exclude = [
".github/**",
"examples/**",
"public/**",
"research/**",
"skills/**",
"test_snapshots/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cougr - A Soroban-compatible ECS framework for on-chain gaming on Stellar"
homepage = "https://github.com/salazarsebas/Cougr"
readme = "README.md"
keywords = [
"ecs",
"game",
"soroban",
"blockchain",
"stellar",
]
categories = [
"game-engines",
"data-structures",
"wasm",
]
license = "MIT"
repository = "https://github.com/salazarsebas/Cougr"
[features]
debug = []
default = []
hazmat-crypto = ["soroban-sdk/hazmat-crypto"]
testutils = ["soroban-sdk/testutils"]
[lib]
name = "cougr_core"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "integration_accounts"
path = "tests/integration_accounts.rs"
[[test]]
name = "integration_cross_module"
path = "tests/integration_cross_module.rs"
[[test]]
name = "integration_ecs"
path = "tests/integration_ecs.rs"
[[test]]
name = "integration_standards"
path = "tests/integration_standards.rs"
[[test]]
name = "integration_zk"
path = "tests/integration_zk.rs"
[[test]]
name = "integration_zk_phase3"
path = "tests/integration_zk_phase3.rs"
[[test]]
name = "no_deprecated_attrs"
path = "tests/no_deprecated_attrs.rs"
[[test]]
name = "public_api_surface"
path = "tests/public_api_surface.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[bench]]
name = "ecs_bench"
path = "benches/ecs_bench.rs"
harness = false
[dependencies.soroban-sdk]
version = "25.1.0"
[dependencies.wee_alloc]
version = "0.4.5"
[dev-dependencies.soroban-sdk]
version = "25.1.0"
features = ["testutils"]
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
overflow-checks = true