-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
64 lines (49 loc) · 1.42 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
60
61
62
63
64
[package]
name = "mango-feeds-connector"
version = "0.4.7"
authors = ["Christian Kamm <[email protected]>", "[email protected]"]
edition = "2021"
license = "AGPL-3.0-or-later"
description = "Listen to Solana account updates via geyser or websockets"
[lib]
[[bench]]
name = "chaindata_bench"
harness = false
[features]
default = []
[dependencies]
tracing = "0.1"
tracing-subscriber = "0.3"
jsonrpc-core = { workspace = true }
jsonrpc-core-client = { workspace = true }
jsonrpc-derive = "18.0.0"
jsonrpc-pubsub = "18.0.0"
# note: avoid solana-rpc dependency
solana-rpc-client = "1.17"
solana-rpc-client-api = "1.17"
solana-client = { workspace = true }
solana-account-decoder = { workspace = true }
solana-sdk = { workspace = true }
solana-logger = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
rustls = { workspace = true }
serde = { workspace = true }
serde_derive = { workspace = true }
log = { workspace = true }
anyhow = { workspace = true }
smallvec = "1.13.2"
intmap = "2.0.0"
itertools = { workspace = true }
futures = { workspace = true }
async-channel = { workspace = true }
async-trait = { workspace = true }
warp = { workspace = true }
# 1.9.0+solana.1.16.1
yellowstone-grpc-client = { workspace = true }
yellowstone-grpc-proto = { workspace = true }
csv = "1.3.0"
[dev-dependencies]
clap = { workspace = true }
# cannot upgrade due to clap_lex requirement MSRV 1.74
criterion = "0.4.0"