-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
44 lines (40 loc) · 1.07 KB
/
Cargo.toml
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
[workspace]
members = [
# Contracts (types)
"contracts/market",
"contracts/src-20",
"contracts/pyth-mock",
"contracts/token",
# Libs
"libs/market_sdk",
"libs/token_sdk",
"libs/pyth_mock_sdk",
# Scripts
"scripts",
]
resolver = "2"
[workspace.package]
rust-version = "1.79.0"
[workspace.dependencies]
# Local SDKs
market_sdk = { path = "libs/market_sdk" }
token_sdk = { path = "libs/token_sdk" }
pyth_mock_sdk = { path = "libs/pyth_mock_sdk" }
# Local contracts (types)
pyth_mock = { path = "contracts/pyth-mock" }
market = { path = "contracts/market" }
token = { path = "contracts/token" }
# External
pyth_sdk = { git = "https://github.com/pyth-network/pyth-crosschain", rev = "aa9509ccd37cf5dc73fee891a5730c351d15235f" }
tokio = { version = "1.12", features = ["full"] }
fuels = { version = "0.66.9", features = ["fuel-core-lib"] }
dotenv = "0.15.0"
serde = "1.0.197"
serde_json = "1.0.114"
reqwest = "0.11.20"
rand = "0.8.5"
chrono = "0.4.38"
anyhow = "1.0.86"
tai64 = "4.0.0"
clap = { version = "4.5.17", features = ["env", "derive"] }
hex = "0.4.3"