diff --git a/Cargo.lock b/Cargo.lock index 44493b7f2e..805fcf8305 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8217,7 +8217,6 @@ dependencies = [ "serde_derive", "serde_json", "solana-account-decoder-client-types", - "solana-bundle", "solana-inline-spl", "solana-sdk", "solana-transaction-status-client-types", diff --git a/Cargo.toml b/Cargo.toml index 65b147ab08..cbf50a44c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ members = [ "bloom", "bucket_map", "builtins-default-costs", - "bundle", + "bundle-execution", "cargo-registry", "clap-utils", "clap-v3-utils", @@ -414,7 +414,7 @@ solana-borsh = { path = "sdk/borsh", version = "=2.2.0" } solana-bpf-loader-program = { path = "programs/bpf_loader", version = "=2.2.0" } solana-bucket-map = { path = "bucket_map", version = "=2.2.0" } solana-builtins-default-costs = { path = "builtins-default-costs", version = "=2.2.0" } -solana-bundle = { path = "bundle", version = "=2.2.0" } +solana-bundle = { path = "bundle-execution", version = "=2.2.0" } agave-cargo-registry = { path = "cargo-registry", version = "=2.2.0" } solana-clap-utils = { path = "clap-utils", version = "=2.2.0" } solana-clap-v3-utils = { path = "clap-v3-utils", version = "=2.2.0" } diff --git a/bundle/Cargo.toml b/bundle-execution/Cargo.toml similarity index 100% rename from bundle/Cargo.toml rename to bundle-execution/Cargo.toml diff --git a/bundle/src/bundle_execution.rs b/bundle-execution/src/bundle_execution.rs similarity index 100% rename from bundle/src/bundle_execution.rs rename to bundle-execution/src/bundle_execution.rs diff --git a/bundle/src/lib.rs b/bundle-execution/src/lib.rs similarity index 100% rename from bundle/src/lib.rs rename to bundle-execution/src/lib.rs diff --git a/programs/sbf/Cargo.lock b/programs/sbf/Cargo.lock index 97714f1d1f..bbfac69535 100644 --- a/programs/sbf/Cargo.lock +++ b/programs/sbf/Cargo.lock @@ -6462,7 +6462,6 @@ dependencies = [ "serde_derive", "serde_json", "solana-account-decoder-client-types", - "solana-bundle", "solana-inline-spl", "solana-sdk", "solana-transaction-status-client-types", diff --git a/rpc-client-api/Cargo.toml b/rpc-client-api/Cargo.toml index da10a05eba..e1eee85110 100644 --- a/rpc-client-api/Cargo.toml +++ b/rpc-client-api/Cargo.toml @@ -21,7 +21,6 @@ serde = { workspace = true } serde_derive = { workspace = true } serde_json = { workspace = true } solana-account-decoder-client-types = { workspace = true } -solana-bundle = { workspace = true } solana-inline-spl = { workspace = true } solana-sdk = { workspace = true } solana-transaction-status-client-types = { workspace = true }