forked from blend-capital/blend-contracts-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (34 loc) · 796 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
42
[workspace]
resolver = "2"
members = [
"backstop",
"blend-contract-sdk",
"emitter",
"pool",
"mocks/mock-pool-factory",
"pool-factory",
"test-suites"
]
[profile.release-with-logs]
inherits = "release"
debug-assertions = true
[profile.release]
opt-level = "z"
overflow-checks = true # DEV: Do not remove this check - doing so will create vulnerabilities
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[workspace.dependencies.soroban-sdk]
version = "22.0.1"
[workspace.dependencies.soroban-fixed-point-math]
version = "1.3.0"
[workspace.dependencies.cast]
version = "0.3.0"
default-features = false
[workspace.dependencies.sep-40-oracle]
version = "1.2.0"
[workspace.dependencies.sep-41-token]
version = "1.2.0"