-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 738 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 738 Bytes
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
[package]
name = "rust_sniper_bot"
version = "0.1.0"
edition = "2021"
default-run = "main"
# Binary configurations
[[bin]]
name = "main"
path = "src/main.rs"
[[bin]]
name = "detector"
path = "src/detector.rs"
[[bin]]
name = "testDetector"
path = "src/testDetector.rs"
[[bin]]
name = "testMain"
path = "src/testMain.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = { version = "0.21", features = ["native-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1"
dotenv = "0.15"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
futures-util = "0.3"
chrono = { version = "0.4", features = ["serde"] }
ethers = { version = "2.0", features = ["abigen", "ws"] }