2020-10-15 17:04:10 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-storage-proto"
|
|
|
|
description = "Solana Storage Protobuf Definitions"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-storage-proto"
|
2023-03-28 20:28:56 -07:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2020-10-15 17:04:10 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
bincode = { workspace = true }
|
|
|
|
bs58 = { workspace = true }
|
|
|
|
prost = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
solana-account-decoder = { workspace = true }
|
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
solana-transaction-status = { workspace = true }
|
2020-10-15 17:04:10 -07:00
|
|
|
|
2021-12-01 15:28:50 -08:00
|
|
|
[dev-dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
enum-iterator = { workspace = true }
|
2021-12-01 15:28:50 -08:00
|
|
|
|
2020-10-15 17:04:10 -07:00
|
|
|
[lib]
|
|
|
|
crate-type = ["lib"]
|
|
|
|
name = "solana_storage_proto"
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
2021-07-09 13:06:06 -07:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
tonic-build = { workspace = true }
|
2022-08-08 08:42:12 -07:00
|
|
|
|
|
|
|
# windows users should install the protobuf compiler manually and set the PROTOC
|
|
|
|
# envar to point to the installed binary
|
|
|
|
[target."cfg(not(windows))".build-dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
protobuf-src = { workspace = true }
|