Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/lang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ impl ShadowLang {
// The default limit of 256 then means a limit of 256 bytes of string per invocation.
// We'll increase this to 8k, in case people want to embed an RSA cert or something (don't
// construe this as an endorsement of that plan).
restrictions.memory_limit = 8192;
restrictions.memory_limit = 65536;

let interp = ketos::Builder::new()
.restrict(restrictions)
Expand Down
Loading