Compare commits

..

No commits in common. "3207f4cedff8c23e1ccee81f78893aaa63e462b0" and "ab15a36bffac253ae230dab8704e495934359aa3" have entirely different histories.

4 changed files with 8 additions and 7 deletions

View file

@ -3,7 +3,7 @@ on:
push: push:
branches: branches:
- '**' - '**'
# - '!master' - '!master'
jobs: jobs:
format: format:

View file

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

View file

@ -1,4 +0,0 @@
#!/bin/bash
cargo ws publish --registry cscherr
cargo ws publish --registry cscherr --no-git-commit --publish-as-is
cargo publish --registry cscherr -p libpt

View file

@ -88,6 +88,11 @@ 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 ////////////////////////////////////////////////////////////////////////////////