44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[package]
|
|
name = "solana-wen-restart"
|
|
description = "Automatic repair and restart protocol"
|
|
documentation = "https://github.com/solana-foundation/solana-improvement-documents/pull/46"
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
license = { workspace = true }
|
|
edition = { workspace = true }
|
|
publish = true
|
|
|
|
[dependencies]
|
|
log = { workspace = true }
|
|
prost = { workspace = true }
|
|
prost-types = { workspace = true }
|
|
solana-gossip = { workspace = true }
|
|
solana-ledger = { workspace = true }
|
|
solana-logger = { workspace = true }
|
|
solana-program = { workspace = true }
|
|
solana-runtime = { workspace = true }
|
|
solana-sdk = { workspace = true }
|
|
solana-vote-program = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
serial_test = { workspace = true }
|
|
solana-entry = { workspace = true }
|
|
solana-streamer = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
prost-build = { workspace = true }
|
|
rustc_version = { workspace = true }
|
|
|
|
# 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]
|
|
protobuf-src = { workspace = true }
|
|
|
|
[lib]
|
|
name = "solana_wen_restart"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|