From 742d66cc1b3ab5c91090d793f65e891ed96832fe Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Wed, 17 Jan 2024 14:58:59 +0100 Subject: [PATCH] hopefully fix hedu --- Cargo.toml | 4 ++-- src/hedu/mod.rs | 5 ----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f3347b4..d9670ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,13 +49,13 @@ keywords.workspace = true categories.workspace = true [features] -default = ["log", "core"] +default = ["log", "core", "bin"] core = [] math = [] log = [] bintols = [] net = [] -bin = ["dep:clap", "dep:clap-num", "dep:clap-verbosity-flag"] +bin = ["dep:clap", "dep:clap-num", "dep:clap-verbosity-flag", "math", "bintols"] [lib] name = "libpt" diff --git a/src/hedu/mod.rs b/src/hedu/mod.rs index fca39ee..4e72881 100644 --- a/src/hedu/mod.rs +++ b/src/hedu/mod.rs @@ -88,11 +88,6 @@ pub struct Cli { /// If left empty or set as "-", the program will read from stdin. pub data_source: Option, } -impl Cli { - fn parse() -> Cli { - todo!() - } -} //// IMPLEMENTATION ////////////////////////////////////////////////////////////////////////////////