forked from StellarRouter/StellarRouter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (37 loc) · 1.36 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (37 loc) · 1.36 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
[package]
name = "integration-tests"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "cross_contract_tests"
path = "tests/cross_contract_tests.rs"
[[test]]
name = "failure_scenarios"
path = "tests/failure_scenarios.rs"
[[test]]
name = "quote_execution_tests"
path = "tests/quote_execution_tests.rs"
[[test]]
name = "liquidity_plugin_tests"
path = "tests/liquidity_plugin_tests.rs"
[dependencies]
[dev-dependencies]
# soroban-sdk with testutils enables the *Client types and register_contract helper
# used by cross_contract_tests.rs and failure_scenarios.rs.
soroban-sdk = { version = "21.7.6", features = ["testutils"] }
router-core = { path = "../contracts/router-core" }
router-registry = { path = "../contracts/router-registry" }
router-access = { path = "../contracts/router-access" }
router-middleware = { path = "../contracts/router-middleware" }
router-timelock = { path = "../contracts/router-timelock" }
router-multicall = { path = "../contracts/router-multicall" }
router-execution = { path = "../contracts/router-execution" }
router-quote = { path = "../contracts/router-quote" }
router-common = { path = "../contracts/router-common" }
liquidity-plugin-example-fixed-rate = { path = "../contracts/liquidity-plugin-example-fixed-rate" }