forked from Kevin737866/stellar-defi-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (44 loc) · 1.24 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (44 loc) · 1.24 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
[package]
name = "stellar-defi-toolkit"
version = "0.1.0"
edition = "2021"
autoexamples = false
authors = ["OpenAI <support@openai.com>"]
description = "Soroban-oriented lending and borrowing protocol primitives for Stellar"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/stellar-defi-toolkit"
homepage = "https://github.com/yourusername/stellar-defi-toolkit"
keywords = ["stellar", "soroban", "defi", "lending", "borrowing"]
categories = ["cryptography::cryptocurrencies", "web-programming"]
[dependencies]
soroban-sdk = "21.0.0"
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
thiserror = "1.0"
clap = { version = "4.0", features = ["derive"] }
log = "0.4"
env_logger = "0.10"
# Unique identifiers
uuid = { version = "1.0", features = ["v4"] }
[features]
default = []
testutils = ["soroban-sdk/testutils"]
[dev-dependencies]
soroban-sdk = { version = "21.0.0", features = ["testutils"] }
[[bin]]
name = "stellar-defi-cli"
path = "src/main.rs"
[[example]]
name = "yield_vault"
path = "examples/yield_vault.rs"
[[example]]
name = "liquidity_pool"
path = "examples/liquidity_pool.rs"
[lib]
name = "stellar_defi_toolkit"
path = "src/lib.rs"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"