From c24d0663e4bad930be194fd7b4ea40a137f0b650 Mon Sep 17 00:00:00 2001 From: Boris Astardzhiev Date: Fri, 13 Mar 2026 13:51:44 +0200 Subject: [PATCH] feat: enable register-tracing feature for litesvm Adds the register-tracing feature flag to litesvm by default. This only registers the tracing hooks - tracing is only activated at runtime when the SBF_TRACE_DIR environment variable is set. No behavior change when the variable is unset. --- crates/core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index b9529a4c..47781f11 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -109,7 +109,7 @@ tempfile = { workspace = true } spl-token-metadata-interface = { workspace = true } [features] -default = ["sqlite"] +default = ["sqlite", "register-tracing"] sqlite = ["surfpool-db/sqlite"] postgres = ["surfpool-db/postgres"] ignore_tests_ci = []