You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/bin/cli/mod.rs
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -349,6 +349,10 @@ pub struct DebugFeatures {
349
349
#[arg(name = "RELEASE", help = "Disable all debugging features such as prints, logging runtime errors, and logging api return codes", long = "release", action = ArgAction::SetTrue)]
350
350
#[serde(default)]
351
351
pubrelease:bool,
352
+
353
+
#[arg(name = "STRICTSOROBANTYPES", help = "Turn Soroban integer width warnings into errors for stricter type safety", long = "strict-soroban-types", action = ArgAction::SetTrue)]
354
+
#[serde(default)]
355
+
pubstrict_soroban_types:bool,
352
356
}
353
357
354
358
implDefaultforDebugFeatures{
@@ -358,6 +362,7 @@ impl Default for DebugFeatures {
0 commit comments