-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 996 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 996 Bytes
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
[package]
name = "protosol"
version = "5.0.1"
edition = "2021"
license = "Apache-2.0"
description = "Protobuf definitions for the SVM fuzzing project."
repository = "https://github.com/firedancer-io/protosol"
authors = ["Firedancer Team"]
keywords = ["solana", "protobuf", "sealevel", "fuzzing"]
categories = ["encoding"]
readme = "README.md"
links = "protosol"
[build-dependencies]
prost-build = "0.13.1"
flatc-rust = "0.2.0"
[dependencies]
prost = "0.11.9"
flatbuffers = "25.9.23"
solana-account = { version = "3.4.0", optional = true }
solana-pubkey = { version = "4.1.0", optional = true }
solana-epoch-schedule = { version = "3.0.0", optional = true }
solana-rent = { version = "=3.0.0", optional = true }
solana-inflation = { version = "3.0.0", optional = true }
solana-message = { version = "3.1.0", optional = true }
[features]
solana-types = [
"solana-account",
"solana-pubkey",
"solana-epoch-schedule",
"solana-rent",
"solana-inflation",
"solana-message",
]