-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
19 lines (16 loc) · 942 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[workspace]
members = ["crates/*", "examples/*"]
resolver = "2"
[workspace.dependencies]
yellowstone-grpc-client = { version = "2.0.0" }
yellowstone-grpc-proto = { version = "2.0.0", default-features = false }
yellowstone-vixen = { path = "crates/runtime", version = "0.0.0" }
yellowstone-vixen-core = { path = "crates/core", version = "0.0.0" }
yellowstone-vixen-mock = { path = "crates/mock", version = "0.0.0" }
yellowstone-vixen-parser = { path = "crates/parser", version = "0.0.0" }
yellowstone-vixen-proto = { path = "crates/proto", version = "0.0.0" }
# helps resolving zeroize dependency conflicts betweeen solana creates depending on curve25519-dalek and yellowstone-grpc
# https://github.com/solana-labs/solana/issues/26688
zeroize = { version = "1.7", default-features = false }
[patch.crates-io]
curve25519-dalek = { git = "https://github.com/anza-xyz/curve25519-dalek.git", rev = "b500cdc2a920cd5bff9e2dd974d7b97349d61464" }