forked from salazarsebas/Cougr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) 路 1.12 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (48 loc) 路 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[workspace]
members = [
".",
"internal/cougr-core-circuits",
"internal/cougr-core-session",
"internal/cougr-core-test",
]
resolver = "2"
[package]
name = "cougr-core"
version = "1.1.0"
edition = "2021"
description = "Cougr - A Soroban-compatible ECS framework for on-chain gaming on Stellar"
license = "MIT"
readme = "README.md"
repository = "https://github.com/salazarsebas/Cougr"
homepage = "https://github.com/salazarsebas/Cougr"
keywords = ["ecs", "game", "soroban", "blockchain", "stellar"]
categories = ["game-engines", "data-structures", "wasm"]
rust-version = "1.70.0"
exclude = [
".github/**",
"examples/**",
"public/**",
"research/**",
"skills/**",
"test_snapshots/**",
]
[lib]
crate-type = ["rlib"]
[features]
default = []
debug = []
hazmat-crypto = ["soroban-sdk/hazmat-crypto"]
testutils = ["soroban-sdk/testutils"]
[dependencies]
soroban-sdk = "25.1.0"
wee_alloc = "0.4.5"
[dev-dependencies]
soroban-sdk = { version = "25.1.0", features = ["testutils"] }
[[bench]]
name = "ecs_bench"
harness = false
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
overflow-checks = true