Skip to content

Commit

Permalink
format workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Krueger authored and Christian Krueger committed Aug 1, 2024
1 parent 27d4177 commit f07ce24
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions keepers/validator-keeper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@ edition = "2021"
description = "Script to keep validator history accounts up to date"

[dependencies]
dotenv = "0.15.0"
anchor-lang = "0.30.0"
bytemuck = { version = "1.4.0", features = ["derive", "min_const_generics"] }
clap = { version = "4.3.0", features = ["derive", "env"] }
dotenv = "0.15.0"
env_logger = "0.10.0"
futures = "0.3.21"
futures-util = "0.3.21"
jito-steward = { features = ["no-entrypoint"], path = "../../programs/steward" }
jito-tip-distribution = { features = ["no-entrypoint"], git = "https://github.com/jito-foundation/jito-programs", rev = "50d450e993cb2278bcf97cd01b19e8a4f1f56e8e" }
log = "0.4.18"
rand = "0.8.5"
solana-account-decoder = "1.18"
solana-clap-utils = "1.18"
solana-client = "1.18"
Expand All @@ -23,10 +25,8 @@ solana-net-utils = "1.18"
solana-program = "1.18"
solana-sdk = "1.18"
solana-streamer = "1.18"
rand = "0.8.5"
spl-stake-pool = { features = ["no-entrypoint"], version = "1.0.0" }
stakenet-sdk = { path = "../../sdk" }
thiserror = "1.0.37"
tokio = { version = "1.36.0", features = ["full"] }
validator-history = { features = ["no-entrypoint"], path = "../../programs/validator-history" }
jito-steward = { features = ["no-entrypoint"], path = "../../programs/steward" }
stakenet-sdk = { path = "../../sdk" }
8 changes: 4 additions & 4 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ crate-type = ["cdylib", "lib"]
name = "stakenet_sdk"

[dependencies]
anchor-lang = "0.30.0"
bincode = "1.3.3"
clap = { version = "4.3.0", features = ["derive"] }
futures = "0.3.21"
jito-steward = { features = ["no-entrypoint"], path = "../programs/steward" }
jito-tip-distribution = { features = ["no-entrypoint"], git = "https://github.com/jito-foundation/jito-programs", rev = "50d450e993cb2278bcf97cd01b19e8a4f1f56e8e" }
log = "0.4.18"
anchor-lang = "0.30.0"
solana-account-decoder = "1.18"
solana-client = "1.18"
solana-metrics = "1.18"
solana-program = "1.18"
solana-sdk = "1.18"
spl-pod = "0.1.0"
spl-stake-pool = { features = ["no-entrypoint"], version = "1.0.0" }
thiserror = "1.0.37"
tokio = { version = "1.36.0", features = ["full"] }
spl-stake-pool = { features = ["no-entrypoint"], version = "1.0.0" }
jito-steward = { features = ["no-entrypoint"], path = "../programs/steward" }
validator-history = { features = ["no-entrypoint"], path = "../programs/validator-history" }
jito-tip-distribution = { features = ["no-entrypoint"], git = "https://github.com/jito-foundation/jito-programs", rev = "50d450e993cb2278bcf97cd01b19e8a4f1f56e8e" }
6 changes: 3 additions & 3 deletions utils/steward-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ dotenv = "0.15.0"
futures = "0.3.21"
futures-util = "0.3.21"
jito-steward = { features = ["no-entrypoint"], path = "../../programs/steward" }
stakenet-sdk = { path = "../../sdk" }
log = "0.4.18"
spl-pod = "0.1.0"
solana-account-decoder = "1.18"
solana-clap-utils = "1.18"
solana-client = "1.18"
solana-metrics = "1.18"
solana-program = "1.18"
solana-sdk = "1.18"
spl-pod = "0.1.0"
spl-stake-pool = { features = ["no-entrypoint"], version = "1.0.0" }
stakenet-sdk = { path = "../../sdk" }
thiserror = "1.0.37"
tokio = { version = "1.36.0", features = ["full"] }
spl-stake-pool = { features = ["no-entrypoint"], version = "1.0.0" }
validator-history = { features = ["no-entrypoint"], path = "../../programs/validator-history" }
validator-keeper = { path = "../../keepers/validator-keeper" }

0 comments on commit f07ce24

Please sign in to comment.