harn-kernel 0.10.53

Portable compiler, program artifact, and deterministic execution kernel for Harn
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub struct RuntimeLimits {
    pub max_constant_folded_collection_items: usize,
    pub max_constant_folded_string_bytes: usize,
}

impl RuntimeLimits {
    pub const DEFAULT: Self = Self {
        max_constant_folded_collection_items: 4_096,
        max_constant_folded_string_bytes: 64 * 1024,
    };
}