nac3_sca/nac3core/src/lib.rs

14 lines
213 B
Rust
Raw Normal View History

2021-01-04 14:49:14 +08:00
#![warn(clippy::all)]
#![allow(clippy::clone_double_ref)]
#[cfg(test)]
extern crate test_case;
2020-03-29 15:13:08 +08:00
extern crate num_bigint;
extern crate inkwell;
extern crate rustpython_parser;
2021-06-28 14:48:04 +08:00
extern crate indoc;
2021-06-28 10:49:41 +08:00
mod typecheck;
2021-01-04 14:51:25 +08:00