-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (53 loc) · 1.46 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (53 loc) · 1.46 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
54
55
56
[workspace]
members = [
"backend",
"contracts/crucible",
"contracts/treasury",
"contracts/proxy",
"contracts/zk_verifier",
"crucible-macros",
"examples/counter",
"examples/token",
"examples/vesting",
"examples/staking",
"examples/time_locked_vault",
"examples/emergency_stop",
"examples/emergency-circuit-breaker",
"examples/gasless",
"examples/cross-contract",
"examples/lending",
"examples/prediction-market",
"examples/escrow-multi-arbiter",
"examples/options-protocol",
"examples/amm-pool",
"examples/yield-vault",
"examples/bounty-escrow",
"examples/nft-rental",
"examples/payment-streaming",
"examples/insurance-mutual",
"examples/portfolio-index",
"examples/flash-mint",
"examples/lottery",
"examples/gaming-crafting",
"examples/smart-wallet",
"examples/quadratic-funding",
"examples/liquid-staking",
]
resolver = "2"
[workspace.package]
version = "1.30.0"
edition = "2021"
rust-version = "1.91.0"
license = "MIT"
description = "A batteries-included testing toolkit for Soroban smart contracts."
repository = "https://github.com/anumukul/crucible"
homepage = "https://github.com/anumukul/crucible"
authors = ["Crucible Contributors"]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[workspace.dependencies]
soroban-sdk = { version = "27", features = ["testutils"] }
crucible-macros = { path = "crucible-macros", version = "1.16.0" }