forked from blend-capital/backstop-bootstrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (32 loc) · 844 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
[package]
name = "backstop_bootstrapper"
version = "1.0.0"
authors = ["Script3 Ltd. <[email protected]>"]
license = "AGPL-3.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
doctest = false
[features]
testutils = ["soroban-sdk/testutils"]
[dependencies]
soroban-sdk = "20.5.0"
soroban-fixed-point-math = "1.0.0"
blend-contract-sdk = "1.0.0"
[dev_dependencies]
soroban-sdk = { version = "20.5.0", features = ["testutils"] }
blend-contract-sdk = { version = "1.0.0", features = ["testutils"] }
[profile.release-with-logs]
inherits = "release"
debug-assertions = true
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true