forked from conduit-protocol/streamFi-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (42 loc) · 1.38 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (42 loc) · 1.38 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
[workspace]
resolver = "2"
members = [
"contracts/stream",
"contracts/factory",
"contracts/governor",
"contracts/oracle",
"contracts/batch-processor",
"contracts/common",
"contracts/token-vault",
]
[workspace.dependencies]
soroban-sdk = { version = "21.0.0" }
# ── Integration-test harness (workspace root package) ────────────────────────
[package]
name = "conduit-integration-tests"
version = "0.1.0"
edition = "2021"
publish = false
autobins = false
autoexamples = false
[dependencies]
soroban-sdk = { workspace = true }
[dev-dependencies]
drip-stream = { path = "contracts/stream", features = ["testutils"] }
drip-factory = { path = "contracts/factory", features = ["testutils"] }
drip-governor = { path = "contracts/governor", features = ["testutils"] }
drip-oracle = { path = "contracts/oracle", features = ["testutils"] }
drip-batch-processor = { path = "contracts/batch-processor", features = ["testutils"] }
soroban-sdk = { workspace = true, features = ["testutils"] }
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true