forked from Swaylend/swaylend-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (50 loc) · 1.17 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "swaylend-scripts"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
[[bin]]
name = "activate_market"
path = "src/activate_market.rs"
[[bin]]
name = "update_collateral_assets"
path = "src/update_collateral_assets.rs"
[[bin]]
name = "change_proxy_owner"
path = "src/change_proxy_owner.rs"
[[bin]]
name = "change_market_owner"
path = "src/change_market_owner.rs"
[[bin]]
name = "update_market"
path = "src/update_market.rs"
[[bin]]
name = "withdraw_reserves"
path = "src/withdraw_reserves.rs"
[[bin]]
name = "deploy_tokens"
path = "src/deploy_tokens.rs"
[[bin]]
name = "mint_tokens"
path = "src/mint_tokens.rs"
[[bin]]
name = "deploy_pyth"
path = "src/deploy_pyth.rs"
[[bin]]
name = "fill_reserves"
path = "src/fill_reserves.rs"
[dependencies]
fuels = { workspace = true }
clap = { workspace = true }
tokio = { workspace = true }
anyhow = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
dotenv = { workspace = true }
rand = { workspace = true }
chrono = { workspace = true }
tai64 = { workspace = true }
hex = { workspace = true }
market = { workspace = true }
token_sdk = { workspace = true }
pyth_mock_sdk = { workspace = true }