We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f26c95 commit 57f5040Copy full SHA for 57f5040
soroban-sdk/src/lib.rs
@@ -112,6 +112,11 @@ const _: () = {
112
key = "rssdkver",
113
val = concat!(env!("CARGO_PKG_VERSION"), "#", env!("GIT_REVISION")),
114
);
115
+
116
+ // An indicator that the spec shaking v2 experimental feature is in use. Signals to the
117
+ // stellar-cli that the .wasm needs to have it's spec shaken using markers in the data section.
118
+ #[cfg(feature = "experimental_spec_shaking_v2")]
119
+ contractmeta!(key = "rssdkfeat", val = "experimental_spec_shaking_v2");
120
};
121
122
// Re-exports of dependencies used by macros.
0 commit comments