Skip to content

Commit

Permalink
(starky): move schema verification logic to VM. Upgrade state
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 23, 2024
1 parent 1012dff commit 71f6719
Show file tree
Hide file tree
Showing 21 changed files with 558 additions and 1,488 deletions.
14 changes: 6 additions & 8 deletions src/schema/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,14 @@
// See the License for the specific language governing permissions and
// limitations under the License.

mod operations;
mod types;
#[allow(clippy::module_inception)]
mod schema;
mod state;
mod occurrences;

pub use occurrences::{Occurrences, OccurrencesMismatch};
pub use operations::{
AssignmentType, AssignmentsSchema, ExtensionSchema, GenesisSchema, GlobalSchema, MetaSchema,
OpFullType, OpSchema, OpType, TransitionSchema, ValencySchema, ValencyType,
pub use schema::{Schema, SchemaId};
pub use state::{FielCount, GlobalStateSchema, OwnedStateSchema, PublicationSchema};
pub use types::{
AssignmentType, ExtensionType, GlobalStateType, MetaType, OpFullType, OpType, TransitionType,
ValencyType,
};
pub use schema::{ExtensionType, GlobalStateType, MetaType, Schema, SchemaId, TransitionType};
pub use state::{GlobalStateSchema, OwnedStateSchema};
263 changes: 0 additions & 263 deletions src/schema/occurrences.rs

This file was deleted.

Loading

0 comments on commit 71f6719

Please sign in to comment.