-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (32 loc) · 1.13 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 = "mempool-server"
authors = ["dev7ba <[email protected]>"]
description = "Connect to a bitcoin node to serve its mempool via http GET"
version = "0.2.0"
edition = "2021"
keywords = ["bitcoin", "mempool"]
categories = ["command-line-utilities","cryptography::cryptocurrencies"]
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.20"
simple_logger = "4.3.0"
serde = { version = "1", features = [ "derive" ] }
config = "0.13.4"
dashmap = "5.5.3"
crossbeam-skiplist = "0.1.1"
url = { version = "2.5.0", features = ["serde"] }
dirs = "5.0.1"
anyhow = "1.0"
rayon = "1.8.0"
hex = "0.4.3"
bitcoincore-rpc = "0.18.0"
bitcoincore-zmqsequence= {path = "../bitcoincore-zmqsequence", features=["check_node"] }
# bitcoincore-zmqsequence= {version = "0.2", features=["check_node"] }
rocket = "=0.5.0"
nix = {version = "0.27.1",features=["signal"]}
[profile.release]
strip=true # Strip symbols in binary.
opt-level="s" # Optimize for small size.
lto = true # Optimize but more linking time.
codegen-units = 1 # Maximize size reduction operations.