forked from Swaylend/swaylend-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (55 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
69 lines (55 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "swaylend-scripts"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
# Market scripts
[[bin]]
name = "activate_market"
path = "src/market/activate_market.rs"
[[bin]]
name = "update_collateral_assets"
path = "src/market/update_collateral_assets.rs"
[[bin]]
name = "change_market_proxy_owner"
path = "src/market/change_market_proxy_owner.rs"
[[bin]]
name = "change_market_owner"
path = "src/market/change_market_owner.rs"
[[bin]]
name = "update_market"
path = "src/market/update_market.rs"
[[bin]]
name = "withdraw_reserves"
path = "src/market/withdraw_reserves.rs"
[[bin]]
name = "fill_reserves"
path = "src/market/fill_reserves.rs"
[[bin]]
name = "update_oracle_configuration"
path = "src/market/update_oracle_configuration.rs"
# Testnet scripts
[[bin]]
name = "deploy_tokens"
path = "src/testnet/deploy_tokens.rs"
[[bin]]
name = "mint_tokens"
path = "src/testnet/mint_tokens.rs"
[[bin]]
name = "deploy_pyth"
path = "src/testnet/deploy_pyth.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 }