forked from SO4-Markets/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 1.01 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
[package]
name = "liquidation-handler"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
soroban-sdk = { workspace = true }
gmx-types = { path = "../../libs/types" }
gmx-math = { path = "../../libs/math" }
gmx-keys = { path = "../../libs/keys" }
gmx-market-utils = { path = "../../libs/market_utils" }
gmx-position-utils = { path = "../../libs/position_utils" }
gmx-pricing-utils = { path = "../../libs/pricing_utils" }
gmx-decrease-position-utils = { path = "../../libs/decrease_position_utils" }
[dev-dependencies]
soroban-sdk = { workspace = true, features = ["testutils"] }
role-store = { path = "../role_store" }
data-store = { path = "../data_store" }
oracle = { path = "../oracle", features = ["testutils"] }
order-vault = { path = "../order_vault" }
order-handler = { path = "../order_handler" }
market-token = { path = "../market_token" }