forked from QuorumCredit/QuorumCredit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 661 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (27 loc) · 661 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
[workspace]
members = ["tools/indexer"]
resolver = "2"
[package]
name = "quorum_credit"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
soroban-sdk = { version = "26.0.0", features = ["alloc"] }
sha3 = { version = "0.10", default-features = false }
[dev-dependencies]
soroban-sdk = { version = "26.0.0", features = ["testutils"] }
ed25519-dalek = "2.2"
proptest = { version = "1.4", default-features = false, features = ["std"] }
[profile.coverage]
inherits = "test"
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true