miden-protocol 0.17.0-rc.6

Core components of the Miden protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
use alloc::vec::Vec;

use crate::Word;
use crate::protocol_config::KernelConfig;

impl KernelConfig {
    /// Creates a placeholder [`KernelConfig`] for a kernel
    pub fn dummy() -> Self {
        Self::new(Word::empty(), Vec::new()).expect("an empty kernel config should be valid")
    }
}