forked from riptl/solana-snapshot-etl
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
50 lines (47 loc) · 1.57 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
49
50
[package]
name = "solana-snapshot-etl"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/solana-snapshot-etl"
description = "Efficiently unpack Solana snapshots"
authors = ["Richard Patel <[email protected]>", "Triton One"]
categories = ["cryptography::cryptocurrencies", "database"]
keywords = ["solana"]
publish = false
[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.73"
bincode = "1.3.3"
clap = { version = "4.4.3", features = ["derive"] }
const-hex = "1.6.2"
env_logger = "0.9.0"
futures = "0.3.28"
indicatif = "0.17.6"
itertools = "0.10.3"
log = "0.4.17"
memmap2 = "0.5.5"
num_cpus = "1.16.0"
rdkafka = { version = "0.33.2", features = ["ssl", "sasl"] }
reqwest = { version = "0.11.11", features = ["blocking"] }
serde = { version = "1.0.139", features = ["derive"] }
serde_json = "1.0.107"
sha2 = "0.10.7"
solana-frozen-abi-macro = "1.16.1"
solana-runtime = "1.16.1"
solana-sdk = "1.16.1"
tar = "0.4.38"
thiserror = "1.0.31"
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros"]}
yellowstone-grpc-geyser = { git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "kafka-v1.0.0-rc.0+solana.1.16.1" }
yellowstone-grpc-kafka = { git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "kafka-v1.0.0-rc.0+solana.1.16.1" }
yellowstone-grpc-proto = { git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "kafka-v1.0.0-rc.0+solana.1.16.1" }
zstd = "0.11.2"
[lints.clippy]
clone_on_ref_ptr = "deny"
missing_const_for_fn = "deny"
trivially_copy_pass_by_ref = "deny"
[profile.release]
debug = true
lto = true
codegen-units = 1