llzk 0.3.1

Rust bindings to the LLZK C API.
1
2
3
4
5
6
7
8
//! Utilities related to MLIR attributes.

use melior::ir::{Attribute, Identifier};

pub mod array;

/// An attribute associated to a name.
pub type NamedAttribute<'c> = (Identifier<'c>, Attribute<'c>);