2021-01-01 14:07:16 +00:00
|
|
|
[package]
|
|
|
|
name = "rustybot"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Giulio De Pasquale <depasquale@giugl.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-01-02 12:15:19 +00:00
|
|
|
bitfinex = { path= "/home/giulio/dev/bitfinex-rs" }
|
2021-01-25 16:21:37 +00:00
|
|
|
tokio = { version = "1", features=["full"]}
|
2021-01-01 14:07:16 +00:00
|
|
|
tokio-tungstenite = "*"
|
2021-01-04 12:07:03 +00:00
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["async-await", "sink", "std"] }
|
2021-01-05 14:51:03 +00:00
|
|
|
async-trait = "0.1"
|
2021-01-05 19:50:14 +00:00
|
|
|
regex = "1"
|
2021-01-14 18:56:31 +00:00
|
|
|
dyn-clone = "1"
|
|
|
|
log = "0.4"
|
2021-01-15 10:51:02 +00:00
|
|
|
fern = {version = "0.6", features = ["colored"]}
|
2021-01-16 11:43:16 +00:00
|
|
|
chrono = "0.4"
|
2021-01-19 21:30:01 +00:00
|
|
|
byteorder = "1"
|
2021-01-24 19:36:25 +00:00
|
|
|
float-cmp = "0.8"
|
|
|
|
merge = "0.1"
|