From f07ce24aa40c7aa07cb8e1bd1db3b9591ce8f7a6 Mon Sep 17 00:00:00 2001 From: Christian Krueger Date: Thu, 1 Aug 2024 11:40:27 -0600 Subject: [PATCH] format workspace --- keepers/validator-keeper/Cargo.toml | 8 ++++---- sdk/Cargo.toml | 8 ++++---- utils/steward-cli/Cargo.toml | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/keepers/validator-keeper/Cargo.toml b/keepers/validator-keeper/Cargo.toml index 6b15c5cb..927bfd4a 100644 --- a/keepers/validator-keeper/Cargo.toml +++ b/keepers/validator-keeper/Cargo.toml @@ -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" @@ -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" } \ No newline at end of file diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 24387da7..ca19901f 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -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" } \ No newline at end of file diff --git a/utils/steward-cli/Cargo.toml b/utils/steward-cli/Cargo.toml index 91d0381d..72f371e4 100644 --- a/utils/steward-cli/Cargo.toml +++ b/utils/steward-cli/Cargo.toml @@ -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" }