-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (29 loc) · 766 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (29 loc) · 766 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
34
35
36
[workspace]
[package]
name = "stellar-defi-vault"
version = "0.1.0"
edition = "2021"
authors = []
license = "MIT"
description = "A non-custodial DeFi yield vault built on Stellar using Soroban smart contracts"
repository = "https://github.com/YOUR_ORG/stellar-defi-vault"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
testutils = ["soroban-sdk/testutils"]
[dependencies]
soroban-sdk = { version = "=21.4.0" }
[dev-dependencies]
soroban-sdk = { version = "=21.4.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
[profile.release-with-logs]
inherits = "release"
debug-assertions = true