hopefully fix hedu
cargo devel CI / cargo CI (push) Successful in 2m9s Details

This commit is contained in:
Christoph J. Scherr 2024-01-17 14:58:59 +01:00
parent b955996ba1
commit 742d66cc1b
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
2 changed files with 2 additions and 7 deletions

View File

@ -49,13 +49,13 @@ keywords.workspace = true
categories.workspace = true categories.workspace = true
[features] [features]
default = ["log", "core"] default = ["log", "core", "bin"]
core = [] core = []
math = [] math = []
log = [] log = []
bintols = [] bintols = []
net = [] net = []
bin = ["dep:clap", "dep:clap-num", "dep:clap-verbosity-flag"] bin = ["dep:clap", "dep:clap-num", "dep:clap-verbosity-flag", "math", "bintols"]
[lib] [lib]
name = "libpt" name = "libpt"

View File

@ -88,11 +88,6 @@ pub struct Cli {
/// If left empty or set as "-", the program will read from stdin. /// If left empty or set as "-", the program will read from stdin.
pub data_source: Option<String>, pub data_source: Option<String>,
} }
impl Cli {
fn parse() -> Cli {
todo!()
}
}
//// IMPLEMENTATION //////////////////////////////////////////////////////////////////////////////// //// IMPLEMENTATION ////////////////////////////////////////////////////////////////////////////////