-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (38 loc) · 1002 Bytes
/
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
[package]
name = "spark_sdk"
description = "Rust sdk of the Spark"
version = "0.0.2"
edition = "2021"
authors = ["alexey <[email protected]>"]
license = "Apache-2.0"
[[test]]
harness = true
name = "tests"
path = "tests/harness.rs"
[dependencies]
tokio = { version = "1.12", features = ["full"] }
dotenv = "0.15.0"
src20_sdk = { git = "https://github.com/compolabs/src-20.git", branch = "master" }
fuels = { version = "0.55.1", features = ["fuel-core-lib"] }
serde = "1.0.197"
serde_json = "1.0.114"
rand = "0.8.5"
sha2 = "0.10.8"
[[bin]]
name = "fulfill_buy_order"
path = "scripts/fulfill_buy_order.rs"
[[bin]]
name = "fulfill_sell_order"
path = "scripts/fulfill_sell_order.rs"
[[bin]]
name = "partial_fulfill_buy_order"
path = "scripts/partial_fulfill_buy_order.rs"
[[bin]]
name = "partial_fulfill_sell_order"
path = "scripts/partial_fulfill_sell_order.rs"
[[bin]]
name = "cancel_order"
path = "scripts/cancel_order.rs"
[[bin]]
name = "deploy_proxy"
path = "scripts/deploy_proxy.rs"