-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
71 lines (62 loc) · 2.06 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
65
66
67
68
69
70
71
[workspace]
resolver = "2"
members = [
"account_storage",
"accounts_from_snapshot",
"accounts_on_demand",
"common",
"token_account_storage",
"simulate_from_snapshot",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["gmgalactus <[email protected]>"]
repository = "https://github.com/blockworks-foundation/solana-lite-account-manager"
license = "AGPL"
[workspace.dependencies]
solana-logger = "~2.0.16"
solana-sdk = "~2.0.16"
solana-rpc-client = "~2.0.16"
solana-account-decoder = "~2.0.16"
solana-client = "~2.0.16"
solana-program = "~2.0.16"
solana-accounts-db = "~2.0.16"
solana-frozen-abi-macro = "~2.0.16"
solana-runtime = "~2.0.16"
solana-rpc-client-api = "~2.0.16"
solana-download-utils = "~2.0.16"
async-trait = "0.1.68"
dashmap = "5.4.0"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
itertools = "0.10.5"
borsh = "0.10.3"
anyhow = "1.0.70"
log = "0.4.17"
bincode = "=1.3.3"
bs58 = "0.4.0"
lz4 = "1.24.0"
zstd = "0.11.2"
prometheus = "0.13.3"
lazy_static = "1.4.0"
base64 = "0.21.0"
futures = "0.3.28"
tracing-subscriber = "0.3.16"
bitflags = "2.6.0"
arrayref = "0.3.7"
tempfile = "3.2.0"
spl-token = "6.0.0"
spl-token-2022 = "5.0.2"
thiserror = "2.0.7"
tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros"] }
yellowstone-grpc-proto = { git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "v2.0.0+solana.2.0.16" }
geyser-grpc-connector = { git = "https://github.com/blockworks-foundation/geyser-grpc-connector.git", tag = "v0.11.0+yellowstone.2.0.0+solana.2.0" }
lite-account-manager-common = { path = "common", version = "0.1.0" }
lite-account-storage = { path = "account_storage", version = "0.1.0" }
lite-accounts-from-snapshot = { path = "accounts_from_snapshot", version = "0.1.0" }
lite-accounts-on-demand = { path = "accounts_on_demand", version = "0.1.0" }
lite-token-account-storage = { path = "token_account_storage", version = "0.1.0" }
[patch.crates-io.curve25519-dalek]
git = "https://github.com/anza-xyz/curve25519-dalek.git"
rev = "b500cdc2a920cd5bff9e2dd974d7b97349d61464"