generated from PlexSheep/baserepo
Merge branch 'devel'
cargo devel CI / cargo CI (push) Has been cancelled
Details
cargo devel CI / cargo CI (push) Has been cancelled
Details
This commit is contained in:
commit
3207f4cedf
|
@ -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"]
|
||||
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"
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
#!/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,11 +88,6 @@ 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 New Issue