forked from yearn/robokitty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 1.01 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
[package]
name = "robokitty"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "robokitty_cli"
path = "src/bin/robokitty_cli.rs"
[[bin]]
name = "robokitty_bot"
path = "src/bin/robokitty_bot.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
ethers = { version = "2", features = ["ipc"] }
tokio = { version = "1", features = ["full", "test-util"] }
dotenvy = "0.15"
teloxide = { version = "0.13", features = ["full", "macros"] }
log = "0.4"
pretty_env_logger = "0.4"
sha2 = "0.10.8"
uuid = { version = "1.9.1", features = ["v4", "fast-rng", "serde"] }
mockall = "0.12"
config = "0.14"
dirs = "4.0"
async-trait = "0.1"
futures = "0.3"
tokio-stream = "0.1"
async-stream = "0.3"
downcast-rs = "1.2"
clap = { version = "4.4", features = ["derive"] }
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
tempfile = "3.2"