generated from PlexSheep/baserepo
Compare commits
No commits in common. "5488f851f91093db04b449b816537c9f35141c9b" and "ea03263c149cb660ad39d3bbe112d41920c53fa0" have entirely different histories.
5488f851f9
...
ea03263c14
9 changed files with 21 additions and 39 deletions
|
@ -19,10 +19,4 @@ jobs:
|
||||||
- run: cargo fix --all-features --all-targets
|
- run: cargo fix --all-features --all-targets
|
||||||
- run: cargo fmt --all
|
- run: cargo fmt --all
|
||||||
- run: cargo test --all-features --all-targets
|
- run: cargo test --all-features --all-targets
|
||||||
- run: |
|
- run: cargo publish --index "https://git.cscherr.de/PlexSheep/_cargo-index.git --dry-run
|
||||||
for CRATE in {libpt-log,libpt-core,libpt-math,libpt-ccc,libpt-bintols,libpt-hedu,libpt-net,libpt-bin,libpt}; do
|
|
||||||
cargo publish \
|
|
||||||
--index "https://git.cscherr.de/PlexSheep/_cargo-index.git" \
|
|
||||||
-p $CRATE
|
|
||||||
;
|
|
||||||
done
|
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
name: Cargo Check, Format, Fix and Test
|
name: Cargo Check, Format, Fix and Test
|
||||||
on:
|
on: [push, pull_request]
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- devel
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
format:
|
format:
|
||||||
|
|
16
Cargo.toml
16
Cargo.toml
|
@ -31,8 +31,6 @@ categories = [
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
anyhow = "1.0.79"
|
anyhow = "1.0.79"
|
||||||
thiserror = "1.0.56"
|
thiserror = "1.0.56"
|
||||||
libpt-log = { version = "0.2.3", path = "../libpt-log" }
|
|
||||||
libpt-bintols = { version = "0.2.3", ath = "../libpt-bintols" }
|
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "libpt"
|
name = "libpt"
|
||||||
|
@ -71,10 +69,10 @@ crate-type = [
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libpt-bintols = { version = "0.2.3", path = "members/libpt-bintols" }
|
libpt-bintols = { path = "members/libpt-bintols" }
|
||||||
libpt-core = { version = "0.2.3", path = "members/libpt-core" }
|
libpt-core = { path = "members/libpt-core" }
|
||||||
libpt-hedu = { version = "0.2.3", path = "members/libpt-hedu" }
|
libpt-hedu = { path = "members/libpt-hedu" }
|
||||||
libpt-log = { version = "0.2.3", path = "members/libpt-log" }
|
libpt-log = { path = "members/libpt-log" }
|
||||||
libpt-math = { version = "0.2.3", path = "members/libpt-math" }
|
libpt-math = { path = "members/libpt-math" }
|
||||||
libpt-ccc = { version = "0.2.3", path = "members/libpt-ccc" }
|
libpt-ccc = { path = "members/libpt-ccc" }
|
||||||
libpt-net = { version = "0.2.3", path = "members/libpt-net" }
|
libpt-net = { path = "members/libpt-net" }
|
||||||
|
|
|
@ -31,11 +31,4 @@ path = "src/main/mod.rs"
|
||||||
clap = { version = "4.4.4", features = ["derive"] }
|
clap = { version = "4.4.4", features = ["derive"] }
|
||||||
clap-num = "1.0.2"
|
clap-num = "1.0.2"
|
||||||
clap-verbosity-flag = "2.0.1"
|
clap-verbosity-flag = "2.0.1"
|
||||||
libpt = { version = "0.2.3", path = "../..", features = [
|
libpt = {path = "../..", features = ["default", "ccc", "math", "hedu", "net", "log"] }
|
||||||
"default",
|
|
||||||
"ccc",
|
|
||||||
"math",
|
|
||||||
"hedu",
|
|
||||||
"net",
|
|
||||||
"log",
|
|
||||||
] }
|
|
||||||
|
|
|
@ -16,5 +16,5 @@ categories.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
num-traits = "0.2.16"
|
num-traits = "0.2.16"
|
||||||
libpt-core = { version = "0.2.3", path = "../libpt-core" }
|
libpt-core = { path = "../libpt-core" }
|
||||||
libpt-log = { version = "0.2.3", path = "../libpt-log" }
|
libpt-log = { path = "../libpt-log" }
|
||||||
|
|
|
@ -17,6 +17,6 @@ categories.workspace = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
num = "0.4.1"
|
num = "0.4.1"
|
||||||
num-traits = "0.2.16"
|
num-traits = "0.2.16"
|
||||||
libpt-core = { version = "0.2.3", path = "../libpt-core" }
|
libpt-core = { path = "../libpt-core" }
|
||||||
libpt-log = { version = "0.2.3", path = "../libpt-log" }
|
libpt-log = { path = "../libpt-log" }
|
||||||
libpt-math = { version = "0.2.3", path = "../libpt-math" }
|
libpt-math = { path = "../libpt-math" }
|
||||||
|
|
|
@ -15,4 +15,4 @@ categories.workspace = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.79"
|
anyhow = "1.0.79"
|
||||||
cucumber = "0.20.2"
|
cucumber = "0.20.2"
|
||||||
libpt-log = { version = "0.2.3", path = "../libpt-log" }
|
libpt-log = {path = "../libpt-log" }
|
||||||
|
|
|
@ -17,5 +17,5 @@ categories.workspace = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
libpt-log = { version = "0.2.3", path = "../libpt-log" }
|
libpt-log = {path = "../libpt-log" }
|
||||||
libpt-bintols = { version = "0.2.3", path = "../libpt-bintols" }
|
libpt-bintols = {path = "../libpt-bintols" }
|
||||||
|
|
|
@ -16,9 +16,9 @@ categories.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
humantime = "2.1.0"
|
humantime = "2.1.0"
|
||||||
libpt-core = { version = "0.2.3", path = "../libpt-core" }
|
libpt-core = { path = "../libpt-core" }
|
||||||
libpt-log = { version = "0.2.3", path = "../libpt-log" }
|
libpt-log = { path = "../libpt-log" }
|
||||||
libpt-math = { version = "0.2.3", path = "../libpt-math" }
|
libpt-math = { path = "../libpt-math" }
|
||||||
reqwest = { version = "0.11.20", features = ["blocking"] }
|
reqwest = { version = "0.11.20", features = ["blocking"] }
|
||||||
serde = { version = "1.0.188", features = ["serde_derive"] }
|
serde = { version = "1.0.188", features = ["serde_derive"] }
|
||||||
serde_json = "1.0.107"
|
serde_json = "1.0.107"
|
||||||
|
|
Reference in a new issue