From f25b76ea1195ecc635e35ad013d746e8307cfb97 Mon Sep 17 00:00:00 2001 From: greg Date: Wed, 1 Nov 2017 01:23:54 -0700 Subject: [PATCH] Kill some packages from schala bin --- Cargo.toml | 10 ---------- src/main.rs | 8 -------- 2 files changed, 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8c03e3c..db5579e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,19 +8,9 @@ authors = ["greg "] llvm-sys = "*" take_mut = "0.1.3" itertools = "0.5.8" -getopts = "*" -linefeed = "0.3" lazy_static = "0.2.8" maplit = "*" colored = "1.5" -serde = "1.0.15" -serde_derive = "1.0.15" -serde_json = "1.0.3" -rocket = "*" -rocket_codegen = "*" -rocket_contrib = "*" -phf = "0.7.12" -includedir = "0.2.0" schala-lib = { path = "schala-lib" } diff --git a/src/main.rs b/src/main.rs index 2d80be9..6c16854 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,19 +1,11 @@ #![feature(link_args)] #![feature(advanced_slice_patterns, slice_patterns, box_patterns, box_syntax)] #![feature(plugin)] -#![plugin(rocket_codegen)] -extern crate getopts; -extern crate linefeed; extern crate itertools; #[macro_use] extern crate lazy_static; #[macro_use] extern crate maplit; -extern crate serde_json; -extern crate rocket; -extern crate rocket_contrib; -extern crate includedir; -extern crate phf; mod schala_lang; mod maaru_lang;