-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
59 lines (53 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
[package]
name = "solana-events-parser"
version = "0.8.0"
authors = [
"cyphersnake <[email protected]>",
"shinkarenko <[email protected]>",
"twoflower <[email protected]>"
]
repository = "https://github.com/cyphersnake/solana-events-parser"
homepage = "https://github.com/cyphersnake/solana-events-parser"
description = "Provides various utilities for working with Solana blockchain transactions and events"
publish = true
keywords = ["solana", "anchor", "blockchain", "utilities"]
edition = "2021"
license = "MIT"
[features]
default = ["solana", "anchor", "storage", "rocksdb", "event-reader"]
unknown_log = []
solana = ["dep:solana-client", "dep:solana-sdk", "dep:solana-transaction-status", "dep:de-solana-client"]
anchor = ["solana", "dep:anchor-lang", "dep:base64"]
storage = ["solana"]
rocksdb = ["dep:rocksdb", "dep:bincode"]
event-reader = ["storage", "dep:futures", "dep:thiserror", "dep:non-empty-vec", "dep:derive_builder"]
[dependencies]
anyhow = "1.0.71"
async-trait = "0.1.68"
base64 = { version = "0.13.0", optional = true }
bincode = { version = "1.3.3", optional = true }
bs58 = "0.5.0"
derive_builder = { version = "0.12.0", optional = true }
futures = { version = "0.3", optional = true }
lazy_static = "1.4.0"
non-empty-vec = { version = "0.2.3", optional = true }
regex = "1.8.2"
result-inspect = "0.3.0"
rocksdb = { version = "0.21.0", optional = true }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
simple_logger = "4.1.0"
thiserror = { version = "1.0.40", optional = true }
tracing = "0.1.37"
borsh = "0.10.3"
tokio = { version = "1", features = ["full"] }
solana-client = { version = "1.17.0", optional = true }
solana-sdk = { version = "1.17.0", optional = true }
solana-transaction-status = { version = "1.17.0", optional = true }
itertools = "0.11.0"
[dependencies.de-solana-client]
version = "0.4.0"
optional = true
[dependencies.anchor-lang]
version = "0.29.0"
optional = true