forked from M-Labs/nac3
moved nac3type to nac3core
This commit is contained in:
parent
94ea2c7a9d
commit
a9827da70b
7
Cargo.lock
generated
7
Cargo.lock
generated
@ -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"
|
||||
|
@ -3,5 +3,4 @@ members = [
|
||||
"nac3core",
|
||||
"nac3standalone",
|
||||
"nac3embedded",
|
||||
"nac3type",
|
||||
]
|
||||
|
@ -1,4 +1,4 @@
|
||||
use super::types::{Type::*, *};
|
||||
use super::typedef::{Type::*, *};
|
||||
use std::collections::HashMap;
|
||||
use std::rc::Rc;
|
||||
|
@ -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;
|
||||
|
@ -1,4 +1,4 @@
|
||||
use super::types::{Type::*, *};
|
||||
use super::typedef::{Type::*, *};
|
||||
use std::collections::HashMap;
|
||||
use std::rc::Rc;
|
||||
|
@ -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" }
|
||||
|
||||
|
@ -1,6 +0,0 @@
|
||||
extern crate rustpython_parser;
|
||||
|
||||
pub mod types;
|
||||
pub mod inference;
|
||||
pub mod primitives;
|
||||
|
Loading…
Reference in New Issue
Block a user