-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 831 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 831 Bytes
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
[package]
name = "stellar-goal-vault"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
# Feature flags
# ------------
# `testutils` – enables soroban-sdk's test helpers (mock ledger, StellarAssetClient,
# Address::generate, etc.). This feature MUST NOT be enabled for production/release
# WASM builds; it is only activated during `cargo test` (via dev-dependencies) and
# when explicitly requested with `--features testutils`.
[features]
testutils = ["soroban-sdk/testutils"]
[dependencies]
soroban-sdk = "27.0.2"
[dev-dependencies]
soroban-sdk = { version = "27.0.2", features = ["testutils"] }
proptest = "1.4"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true