From b7a57a75db8a2bf8ac848c45cf3ba8d8006e58dc Mon Sep 17 00:00:00 2001 From: rohansingh4 Date: Fri, 18 Jul 2025 19:00:17 +0000 Subject: [PATCH 1/2] fixed harcoded paths --- account-decoder/Cargo.toml | 2 +- accounts-cluster-bench/Cargo.toml | 2 +- associated-token-account/program/Cargo.toml | 2 +- rpc/Cargo.toml | 2 +- svm/Cargo.toml | 2 +- svm/examples/paytube/Cargo.toml | 2 +- token-2022/clients/cli/Cargo.toml | 2 +- token-2022/clients/rust-legacy/Cargo.toml | 2 +- tokens/Cargo.toml | 2 +- transaction-status/Cargo.toml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/account-decoder/Cargo.toml b/account-decoder/Cargo.toml index 367b56f..c6ada0b 100644 --- a/account-decoder/Cargo.toml +++ b/account-decoder/Cargo.toml @@ -45,7 +45,7 @@ solana-stake-interface = { workspace = true } solana-sysvar = { workspace = true } solana-vote-interface = { workspace = true, features = ["bincode"] } spl-generic-token = { workspace = true } -spl-token = { path ="/home/atreyrachit23/agave/token/program" , features = ["no-entrypoint"] } +spl-token = { path = "../token/program" , features = ["no-entrypoint"] } spl-token-2022 = { workspace = true, features = ["no-entrypoint"] } spl-token-group-interface = { workspace = true } spl-token-metadata-interface = { workspace = true } diff --git a/accounts-cluster-bench/Cargo.toml b/accounts-cluster-bench/Cargo.toml index 87bf262..f509c2d 100644 --- a/accounts-cluster-bench/Cargo.toml +++ b/accounts-cluster-bench/Cargo.toml @@ -42,7 +42,7 @@ solana-transaction = { workspace = true } solana-transaction-status = { workspace = true } solana-version = { workspace = true } spl-generic-token = { workspace = true } -spl-token = { path ="/home/atreyrachit23/agave/token/program" , features = ["no-entrypoint"] } +spl-token = { path = "../token/program" , features = ["no-entrypoint"] } [target.'cfg(not(any(target_env = "msvc", target_os = "freebsd")))'.dependencies] jemallocator = { workspace = true } diff --git a/associated-token-account/program/Cargo.toml b/associated-token-account/program/Cargo.toml index 9b6b200..09ecad1 100644 --- a/associated-token-account/program/Cargo.toml +++ b/associated-token-account/program/Cargo.toml @@ -18,7 +18,7 @@ num-traits = "0.2" solana-program = "2.3.0" solana-system-interface = "1" spl-associated-token-account-client = { version = "2.0.0", path = "../interface" } -spl-token = { path ="/home/atreyrachit23/agave/token/program", features = ["no-entrypoint"] } +spl-token = { path = "../../token/program", features = ["no-entrypoint"] } spl-token-2022 = { workspace = true, features = ["no-entrypoint"] } thiserror = "2.0" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 2c33996..1417e40 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -92,7 +92,7 @@ solana-version = { workspace = true } solana-vote = { workspace = true } solana-vote-program = { workspace = true } spl-generic-token = { workspace = true } -spl-token = { path ="/home/atreyrachit23/agave/token/program", features = ["no-entrypoint"] } +spl-token = { path = "../token/program", features = ["no-entrypoint"] } spl-token-2022 = { workspace = true, features = ["no-entrypoint"] } stream-cancel = { workspace = true } thiserror = { workspace = true } diff --git a/svm/Cargo.toml b/svm/Cargo.toml index 8c80731..110767d 100644 --- a/svm/Cargo.toml +++ b/svm/Cargo.toml @@ -119,7 +119,7 @@ solana-system-transaction = { workspace = true } solana-sysvar = { workspace = true } solana-transaction = { workspace = true, features = ["dev-context-only-utils"] } solana-transaction-context = { workspace = true, features = ["dev-context-only-utils"] } -spl-token = { path ="/home/atreyrachit23/agave/token/program" } +spl-token = { path = "../token/program" } test-case = { workspace = true } [lints] diff --git a/svm/examples/paytube/Cargo.toml b/svm/examples/paytube/Cargo.toml index 72d3255..9fea80a 100644 --- a/svm/examples/paytube/Cargo.toml +++ b/svm/examples/paytube/Cargo.toml @@ -37,7 +37,7 @@ solana-system-program = { workspace = true } solana-transaction = { workspace = true, features = ["blake3"] } solana-transaction-error = { workspace = true } spl-associated-token-account = { workspace = true } -spl-token = { path ="/home/atreyrachit23/agave/token/program" } +spl-token = { path = "../../../token/program" } termcolor = { workspace = true } [dev-dependencies] diff --git a/token-2022/clients/cli/Cargo.toml b/token-2022/clients/cli/Cargo.toml index 1e98881..f2e2c57 100644 --- a/token-2022/clients/cli/Cargo.toml +++ b/token-2022/clients/cli/Cargo.toml @@ -32,7 +32,7 @@ solana-sdk = "2.2.1" solana-system-interface = "1" solana-transaction-status = "2.3.4" spl-associated-token-account-client = { workspace = true } -spl-token = { path ="/home/atreyrachit23/agave/token/program", features = ["no-entrypoint"] } +spl-token = { path = "../../../token/program", features = ["no-entrypoint"] } spl-token-2022 = { workspace = true, features = ["no-entrypoint"] } spl-token-client = { version = "0.16.1", path = "../rust-legacy" } spl-token-confidential-transfer-proof-generation = { version = "0.4.0", path = "../../confidential-transfer/proof-generation" } diff --git a/token-2022/clients/rust-legacy/Cargo.toml b/token-2022/clients/rust-legacy/Cargo.toml index 3114cd0..aa76051 100644 --- a/token-2022/clients/rust-legacy/Cargo.toml +++ b/token-2022/clients/rust-legacy/Cargo.toml @@ -31,7 +31,7 @@ spl-associated-token-account-client = { workspace = true } spl-elgamal-registry = { version = "0.3.0",features = ["no-entrypoint"], path = "../../confidential-transfer/elgamal-registry"} spl-memo = { version = "6.0", features = ["no-entrypoint"] } spl-record = { version = "0.3.0", features = ["no-entrypoint"] } -spl-token = { path ="/home/atreyrachit23/agave/token/program", features = ["no-entrypoint"] } +spl-token = { path = "../../../token/program", features = ["no-entrypoint"] } spl-token-confidential-transfer-proof-extraction = { version = "0.4.0", path = "../../confidential-transfer/proof-extraction" } spl-token-confidential-transfer-proof-generation = { version = "0.4.0", path = "../../confidential-transfer/proof-generation" } spl-token-2022 = { workspace = true , features = ["no-entrypoint"] } diff --git a/tokens/Cargo.toml b/tokens/Cargo.toml index 7a03045..470c644 100644 --- a/tokens/Cargo.toml +++ b/tokens/Cargo.toml @@ -42,7 +42,7 @@ solana-transaction = { workspace = true } solana-transaction-status = { workspace = true } solana-version = { workspace = true } spl-associated-token-account = { workspace = true, features = ["no-entrypoint"] } -spl-token = { path ="/home/atreyrachit23/agave/token/program" , features = ["no-entrypoint"] } +spl-token = { path = "../token/program" , features = ["no-entrypoint"] } tempfile = { workspace = true } thiserror = { workspace = true } diff --git a/transaction-status/Cargo.toml b/transaction-status/Cargo.toml index 6bfcec6..a0f4754 100644 --- a/transaction-status/Cargo.toml +++ b/transaction-status/Cargo.toml @@ -44,7 +44,7 @@ solana-transaction-status-client-types = { workspace = true } solana-vote-interface = { workspace = true } spl-associated-token-account = { workspace = true, features = ["no-entrypoint"] } spl-memo = { workspace = true, features = ["no-entrypoint"] } -spl-token = { path ="/home/atreyrachit23/agave/token/program" , features = ["no-entrypoint"] } +spl-token = { path = "../token/program" , features = ["no-entrypoint"] } spl-token-2022 = { workspace = true, features = ["no-entrypoint"] } spl-token-group-interface = { workspace = true } spl-token-metadata-interface = { workspace = true } From cb9f35fcc33dd99357f5afb529c2caac9a1daacb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Jul 2025 10:39:49 +0000 Subject: [PATCH 2/2] Bump http from 0.2.12 to 1.3.1 Bumps [http](https://github.com/hyperium/http) from 0.2.12 to 1.3.1. - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.12...v1.3.1) --- updated-dependencies: - dependency-name: http dependency-version: 1.3.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 70b70d5..61362ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10677,7 +10677,7 @@ dependencies = [ "anyhow", "crossbeam-channel", "futures-util", - "http 0.2.12", + "http 1.3.1", "log", "semver", "serde", @@ -12126,7 +12126,7 @@ dependencies = [ "flate2", "futures 0.3.31", "goauth", - "http 0.2.12", + "http 1.3.1", "hyper 0.14.32", "hyper-proxy", "log", diff --git a/Cargo.toml b/Cargo.toml index f949997..7780252 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -276,7 +276,7 @@ hex = "0.4.3" hidapi = { version = "2.6.3", default-features = false } histogram = "0.6.9" hmac = "0.12.1" -http = "0.2.12" +http = "1.3.1" humantime = "2.2.0" hyper = "0.14.32" hyper-proxy = "0.9.1"