More exampels and ensure light client things work. Remove unstable from unstable-light-client

This commit is contained in:
James Wilson
2025-12-16 13:00:42 +00:00
parent 82590b10d1
commit e9bb756605
16 changed files with 262 additions and 41 deletions
+2 -2
View File
@@ -3,8 +3,8 @@ use cfg_aliases::cfg_aliases;
fn main() {
// Setup cfg aliases
cfg_aliases! {
lightclient: { any(feature = "unstable-light-client", feature = "unstable-light-client-long-running") },
fullclient: { all(not(feature = "unstable-light-client"), not(feature = "unstable-light-client-long-running")) },
lightclient: { any(feature = "light-client", feature = "light-client-long-running") },
fullclient: { all(not(feature = "light-client"), not(feature = "light-client-long-running")) },
legacy_backend: { not(feature = "chainhead-backend") },
chainhead_backend: { feature = "chainhead-backend" },
}