zr/lib.rs
1// Copyright 2026 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#![no_std]
6
7mod opaque;
8mod opaque_bytes;
9mod pin_init;
10mod static_assert;
11mod string;
12
13pub use opaque::Opaque;
14pub use opaque_bytes::OpaqueBytes;
15pub use string::{parse_usize, to_array};