generated from PlexSheep/baserepo
hopefully fix hedu
cargo devel CI / cargo CI (push) Successful in 2m9s
Details
cargo devel CI / cargo CI (push) Successful in 2m9s
Details
This commit is contained in:
parent
b955996ba1
commit
742d66cc1b
|
@ -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"
|
||||||
|
|
|
@ -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 ////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
Reference in New Issue