forked from rainshowerLabs/blutgang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 1.47 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
48
[package]
name = "blutgang"
version = "0.1.1"
edition = "2021"
authors = ["makemake <[email protected]>, Rainshower Labs, github contributors"]
license = "AGPL-3.0-only"
description = "Fast, minimalist weighted round robin load balancing with caching for Ethereum JSON-RPC calls."
readme = "README.md"
homepage = "https://github.com/rainshowerLabs/blutgang"
repository = "https://github.com/rainshowerLabs/blutgang"
keywords = ["cli", "ethereum"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "4.3.0"
hyper = { version = "1.0.0-rc.4", features = ["full"] }
http-body-util = "0.1.0-rc.3"
# hyper-util = { git = "https://github.com/hyperium/hyper-util.git" }
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
sled = { version = "0.34.7", features = ["compression"] }
tokio = { version = "1.28.1", features = ["full"] }
url = "2.4.0"
blake3 = "1.4.1"
jemallocator = "0.5.4"
toml = "0.7.6"
memchr = "2.5.0"
rand = {version = "0.8.5", optional = true}
chrono = "0.4.28"
regex = "1.9.5"
tokio-stream = {version = "0.1.14", features = ["sync"]}
hyper-util-blutgang = "0.1.1"
[profile.maxperf]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false
[features]
default = ["selection-weighed-round-robin"]
no-cache = []
selection-weighed-round-robin = []
selection-random = ["rand"]