blob: 98c85bca8adf82fea885a3126bba8d2988b5a5c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//! Kata Limits - Kata-related limits
// ============================================================================
// Kata Limits
// ============================================================================
/// Maximum number of concurrent katas
pub const MAX_KATAS: usize = 256;
/// Maximum number of attachments per kata
pub const MAX_ATTACHMENTS: usize = 16;
/// Maximum command line arguments
pub const MAX_ARGS: usize = 32;
/// Maximum environment variables
pub const MAX_ENV_VARS: usize = 64;
/// Maximum location (working directory) length
pub const MAX_LOCATION_LENGTH: usize = 256;
/// Maximum postman letter length
pub const MAX_LETTER_LENGTH: usize = 256;
|