-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
36 lines (34 loc) · 1.08 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
[package]
authors = ["Karim Agha <[email protected]>", "Marius Ciubotariu <[email protected]>"]
description = "Synchronized shadow state of Solana programs available for off-chain processing."
edition = "2018"
homepage = "https://github.com/hubble-markets/solana-shadow"
include = ["examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["blockchain", "solana", "web3"]
license = "Apache-2.0"
name = "solana-shadow"
repository = "https://github.com/hubble-markets/solana-shadow"
version = "0.2.5"
[dependencies]
base64 = "0.13"
borsh = "0.9"
borsh-derive = "0.9"
bs58 = "0.4"
dashmap = "5.0.0"
futures = "0.3"
hyper-tls = "0.5.0"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
solana-client = "1.8.3"
solana-sdk = "1.8.3"
thiserror = "1"
tokio = {version = "1.13", features = ["full"]}
tokio-tungstenite = {version = "0.16.1", features = ["native-tls"]}
tracing = "0.1.29"
tracing-futures = "0.2.5"
zstd = "0.9"
[dev-dependencies]
anyhow = "1"
pyth-client = "0.2.2"
rand = "0.8"
tracing-subscriber = {version = "0.3.1", features = ["env-filter"]}