datex_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(coroutines)]
#![feature(iter_from_coroutine)]
// #![feature(anonymous_lifetime_in_impl_trait)]

#[macro_use]
extern crate mopa;

extern crate num_integer;

pub mod compiler;
pub mod decompiler;
pub mod runtime;
pub mod parser;
pub mod global;
pub mod utils;
pub mod datex_values;
pub mod generator;
pub mod network;