Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
feat: bump the upload size limit to 50MiB
Browse files Browse the repository at this point in the history
Signed-off-by: Nathaniel McCallum <[email protected]>
  • Loading branch information
npmccallum committed Jul 21, 2022
1 parent b8eea4a commit d238c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
use uuid::Uuid;

const READ_TIMEOUT: Duration = Duration::from_secs(5);
const WASM_MAX: usize = 25 * 1024 * 1024; // 25 MiB
const WASM_MAX: usize = 50 * 1024 * 1024; // 50 MiB
const TOML_MAX: usize = 256 * 1024; // 256 KiB

#[allow(dead_code)]
Expand Down

0 comments on commit d238c74

Please sign in to comment.