generated from PlexSheep/baserepo
Compare commits
No commits in common. "3207f4cedff8c23e1ccee81f78893aaa63e462b0" and "ab15a36bffac253ae230dab8704e495934359aa3" have entirely different histories.
3207f4cedf
...
ab15a36bff
4 changed files with 8 additions and 7 deletions
|
@ -3,7 +3,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- '**'
|
||||
# - '!master'
|
||||
- '!master'
|
||||
|
||||
jobs:
|
||||
format:
|
||||
|
|
|
@ -49,13 +49,13 @@ keywords.workspace = true
|
|||
categories.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["log", "core", "bin"]
|
||||
default = ["log", "core"]
|
||||
core = []
|
||||
math = []
|
||||
log = []
|
||||
bintols = []
|
||||
net = []
|
||||
bin = ["dep:clap", "dep:clap-num", "dep:clap-verbosity-flag", "math", "bintols"]
|
||||
bin = ["dep:clap", "dep:clap-num", "dep:clap-verbosity-flag"]
|
||||
|
||||
[lib]
|
||||
name = "libpt"
|
||||
|
|
|
@ -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
|
|
@ -88,6 +88,11 @@ pub struct Cli {
|
|||
/// If left empty or set as "-", the program will read from stdin.
|
||||
pub data_source: Option<String>,
|
||||
}
|
||||
impl Cli {
|
||||
fn parse() -> Cli {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
//// IMPLEMENTATION ////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
|
Reference in a new issue