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
26 lines (23 loc) · 870 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 870 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
[package]
name = "reader"
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" }
[dev-dependencies]
soroban-sdk = { workspace = true, features = ["testutils"] }
role-store = { path = "../role_store" }
data-store = { path = "../data_store" }
oracle = { path = "../oracle", features = ["testutils"] }
order-handler = { path = "../order_handler" }
order-vault = { path = "../order_vault" }
market-token = { path = "../market_token" }