-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (34 loc) · 904 Bytes
/
Cargo.toml
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
[package]
name = "soroban-snooker"
version = "0.1.4"
edition = "2021"
authors = ["Fred Kyung-jin Rezeau <[email protected]>"]
description = "A smart contract showcasing web3 gaming with Soroban on Stellar"
repository = "https://github.com/fredericrezeau/soroban-snooker"
keywords = ["web3", "soroban", "stellar", "nft", "gaming"]
license-file = "LICENSE"
readme = "README.md"
[lib]
crate-type = ["cdylib"]
[features]
testutils = ["soroban-sdk/testutils"]
[dependencies]
soroban-sdk = "20.3.2"
[dependencies.soroban-kit]
version = "0.1.11"
default-features = false
features = ["storage"]
[dev_dependencies]
soroban-sdk = { version = "20.3.2", features = ["testutils"] }
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true