-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
47 lines (43 loc) · 1.4 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
41
42
43
44
45
46
47
[package]
name = "vesu-liquidator"
version = "0.4.2"
edition = "2021"
license = "MIT"
homepage = "https://www.vesu.xyz/"
repository = "https://github.com/astraly-labs/Vesu-liquidator"
description = "Liquidator bot for the Vesu Protocol"
readme = "README.md"
keywords = ["vesu", "liquidator", "bot", "starknet"]
[dependencies]
anyhow = "1.0.89"
async-trait = "0.1.83"
bigdecimal = { version = "0.4.5", features = ["serde"] }
cainome = { git = "https://github.com/cartridge-gg/cainome", tag = "v0.4.2", features = [
"abigen-rs",
] }
clap = { version = "4.5.18", features = ["derive"] }
colored = "2.1.0"
dashmap = "6.1.0"
dotenvy = "0.15.7"
futures-util = "0.3.30"
lazy_static = "1.5.0"
reqwest = { version = "0.12.8", features = ["json"] }
serde = "1.0.210"
serde_json = "1.0.128"
serde_yaml = "0.9"
starknet = { git = "https://github.com/xJonathanLEI/starknet-rs", rev = "2ddc694" }
strum = { version = "0.26", features = ["derive"] }
tokio = { version = "1.40.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
url = "2.5.2"
apibara-core = { git = "https://github.com/apibara/dna", rev = "9caa385" }
apibara-sdk = { git = "https://github.com/apibara/dna", rev = "9caa385" }
[build-dependencies]
cainome = { git = "https://github.com/cartridge-gg/cainome", tag = "v0.4.2", features = [
"abigen-rs",
] }
[dev-dependencies]
rstest = "0.23.0"
testcontainers = { version = "0.23.1" }
tracing-test = "0.2.5"