forked from bakeronchain/learnvault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 668 Bytes
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 668 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 = ["contracts/*"]
exclude = ["contracts/testdata"]
resolver = "2"
[workspace.package]
authors = ["LearnVault Contributors"]
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/bakeronchain/learnvault"
version = "0.0.1"
[workspace.dependencies.soroban-sdk]
version = "23.1.0"
[workspace.dependencies.learnvault-shared]
path = "contracts/shared"
[workspace.dependencies.proptest]
version = "1.5"
[profile.release]
opt-level = "z"
debug = false
lto = true
debug-assertions = false
codegen-units = 1
panic = "abort"
overflow-checks = true
strip = true
[profile.release-with-logs]
debug-assertions = true
inherits = "release"