coreason_runtime_rust/lib.rs
1// Copyright (c) 2026 CoReason, Inc
2//
3// This software is proprietary and dual-licensed
4// Licensed under the Prosperity Public License 3.0 (the "License")
5// A copy of the license is available at <https://prosperitylicense.com/versions/3.0.0>
6// For details, see the LICENSE file
7// Commercial use beyond a 30-day trial requires a separate license
8//
9// Source Code: <https://github.com/CoReason-AI/coreason-runtime>
10
11#![allow(dead_code)]
12#![allow(unused_imports)]
13#![allow(unused_variables)]
14#![allow(unused_assignments)]
15#![allow(clippy::type_complexity)]
16#![allow(clippy::new_without_default)]
17#![allow(clippy::unnecessary_map_or)]
18#![allow(clippy::needless_return)]
19
20pub mod config;
21pub mod embeddings;
22pub mod execution_plane;
23pub mod license;
24pub mod policy_tree;
25pub mod storage;
26pub mod urn_validator;
27pub mod wasm_dispatcher;