moved nac3type to nac3core

This commit is contained in:
pca006132 2020-12-29 10:33:21 +08:00
parent 94ea2c7a9d
commit a9827da70b
8 changed files with 6 additions and 26 deletions

7
Cargo.lock generated
View File

@ -474,13 +474,6 @@ dependencies = [
"rustpython-parser",
]
[[package]]
name = "nac3type"
version = "0.1.0"
dependencies = [
"rustpython-parser",
]
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"

View File

@ -3,5 +3,4 @@ members = [
"nac3core",
"nac3standalone",
"nac3embedded",
"nac3type",
]

View File

@ -1,4 +1,4 @@
use super::types::{Type::*, *};
use super::typedef::{Type::*, *};
use std::collections::HashMap;
use std::rc::Rc;

View File

@ -2,6 +2,10 @@ extern crate num_bigint;
extern crate inkwell;
extern crate rustpython_parser;
pub mod inference;
pub mod primitives;
pub mod typedef;
use std::error::Error;
use std::fmt;
use std::path::Path;

View File

@ -1,4 +1,4 @@
use super::types::{Type::*, *};
use super::typedef::{Type::*, *};
use std::collections::HashMap;
use std::rc::Rc;

View File

@ -1,10 +0,0 @@
[package]
name = "nac3type"
version = "0.1.0"
authors = ["M-Labs"]
edition = "2018"
[dependencies]
rustpython-parser = { git = "https://github.com/RustPython/RustPython", branch = "master" }

View File

@ -1,6 +0,0 @@
extern crate rustpython_parser;
pub mod types;
pub mod inference;
pub mod primitives;