Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 1 addition & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ members = [
"svm-feature-set",
"svm-log-collector",
"svm-measure",
"svm-metrics",
"svm-timings",
"svm-transaction",
"svm-type-overrides",
Expand Down Expand Up @@ -525,7 +524,6 @@ solana-svm-callback = { path = "svm-callback", version = "=3.1.0" }
solana-svm-feature-set = { path = "svm-feature-set", version = "=3.1.0" }
solana-svm-log-collector = { path = "svm-log-collector", version = "=3.1.0" }
solana-svm-measure = { path = "svm-measure", version = "=3.1.0" }
solana-svm-metrics = { path = "svm-metrics", version = "=3.1.0" }
solana-svm-timings = { path = "svm-timings", version = "=3.1.0" }
solana-svm-transaction = { path = "svm-transaction", version = "=3.1.0" }
solana-svm-type-overrides = { path = "svm-type-overrides", version = "=3.1.0" }
Expand Down
4 changes: 2 additions & 2 deletions program-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ name = "solana_program_runtime"
dev-context-only-utils = []
dummy-for-ci-check = ["metrics"]
frozen-abi = ["dep:solana-frozen-abi", "dep:solana-frozen-abi-macro"]
metrics = ["dep:solana-svm-metrics"]
metrics = ["dep:solana-metrics"]
shuttle-test = ["solana-sbpf/shuttle-test", "solana-svm-type-overrides/shuttle-test"]

[dependencies]
Expand All @@ -45,6 +45,7 @@ solana-frozen-abi-macro = { workspace = true, optional = true, features = [
solana-hash = { workspace = true }
solana-instruction = { workspace = true }
solana-last-restart-slot = { workspace = true }
solana-metrics = { workspace = true, optional = true }
solana-program-entrypoint = { workspace = true }
solana-pubkey = { workspace = true }
solana-rent = { workspace = true }
Expand All @@ -56,7 +57,6 @@ solana-svm-callback = { workspace = true }
solana-svm-feature-set = { workspace = true }
solana-svm-log-collector = { workspace = true }
solana-svm-measure = { workspace = true }
solana-svm-metrics = { workspace = true, optional = true }
solana-svm-timings = { workspace = true }
solana-svm-transaction = { workspace = true }
solana-svm-type-overrides = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion program-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#[cfg(feature = "metrics")]
#[macro_use]
extern crate solana_svm_metrics;
extern crate solana_metrics;

pub use solana_sbpf;
pub mod execution_budget;
Expand Down
16 changes: 1 addition & 15 deletions programs/sbf/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 0 additions & 36 deletions svm-metrics/Cargo.toml

This file was deleted.

92 changes: 0 additions & 92 deletions svm-metrics/benches/metrics.rs

This file was deleted.

Loading
Loading