-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
35 lines (34 loc) · 965 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
[package]
name = "kucoin_arbitrage"
version = "0.0.14"
edition = "2021"
authors = ["Sho Kaneko <[email protected]>"]
description = "Event-Driven Kucoin Arbitrage Framework in Async Rust"
repository = "https://github.com/kanekoshoyu/kucoin_arbitrage"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# async
futures = "0.3.28"
tokio = { version = "1.33.0", features = ["full"] }
tokio-signal = "0.2.9"
# log tracing
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
# config
toml = "0.8.2"
serde = "1.0.188"
serde_derive = "1.0.188"
# debug
lazy_static = "1.4.0"
eyre = "0.6.12"
# exchange
kucoin_api = "1.4.10"
# kucoin_api = { path = "../kucoin_api" }
chrono = "0.4.31"
# number
ordered-float = "3.6.0"
num-traits = "0.2.15"
# uuid
uuid = { version = "1.5.0", features = ["v4", "fast-rng", "macro-diagnostics"] }