Compare commits

...

4 commits

Author SHA1 Message Date
3207f4cedf
Merge branch 'devel'
Some checks failed
cargo devel CI / cargo CI (push) Has been cancelled
2024-01-17 14:59:11 +01:00
742d66cc1b
hopefully fix hedu
All checks were successful
cargo devel CI / cargo CI (push) Successful in 2m9s
2024-01-17 14:58:59 +01:00
b955996ba1
add publish script
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m54s
2024-01-17 14:55:07 +01:00
c7445cc5aa
also CI master
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m56s
2024-01-17 14:44:20 +01:00
4 changed files with 7 additions and 8 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"] 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"

4
scripts/publish.sh Executable file
View file

@ -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

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 ////////////////////////////////////////////////////////////////////////////////