-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 781 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
37
[package]
name = "ProtonFarming"
version = "0.1.0"
edition = "2021"
[metadata]
authors = ["Panda404NotFound"]
description = "ProtonFarming auto staking and liquidity pool staking"
repository = "https://github.com/Panda404NotFound/ProtonFarming"
tags = ["staking", "liquidity pool", "proton", "XPRnetwork", "blockchain", "farming"]
[dependencies]
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.4"
dotenv = "0.15.0"
env_logger = "0.9"
log = "0.4"
[profile.dev]
debug = true
opt-level = 0
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
debug = false
debug-assertions = false
[profile.release.package."*"]
opt-level = 3