From 9d22104f90bf832514ae1b00dd7fa1e1cd0a917e Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Wed, 17 Jan 2024 12:35:36 +0100 Subject: [PATCH] Release independent packages Generated by cargo-workspaces --- Cargo.toml | 18 +++++++++--------- members/libpt-bin/Cargo.toml | 4 ++-- members/libpt-bintols/Cargo.toml | 4 ++-- members/libpt-ccc/Cargo.toml | 6 +++--- members/libpt-core/Cargo.toml | 2 +- members/libpt-hedu/Cargo.toml | 4 ++-- members/libpt-net/Cargo.toml | 6 +++--- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ab5686b..115bc65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,8 +31,8 @@ categories = [ [workspace.dependencies] anyhow = "1.0.79" thiserror = "1.0.56" -libpt-log = { version = "0.2.0-alpha.1", path = "../libpt-log" } -libpt-bintols = { version = "0.2.0-alpha.1", ath = "../libpt-bintols" } +libpt-log = { version = "0.2.0-alpha.2", path = "../libpt-log" } +libpt-bintols = { version = "0.2.0-alpha.2", ath = "../libpt-bintols" } [package] name = "libpt" @@ -71,10 +71,10 @@ crate-type = [ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -libpt-bintols = { version = "0.2.0-alpha.1", path = "members/libpt-bintols" } -libpt-core = { version = "0.2.0-alpha.1", path = "members/libpt-core" } -libpt-hedu = { version = "0.2.0-alpha.1", path = "members/libpt-hedu" } -libpt-log = { version = "0.2.0-alpha.1", path = "members/libpt-log" } -libpt-math = { version = "0.2.0-alpha.1", path = "members/libpt-math" } -libpt-ccc = { version = "0.2.0-alpha.1", path = "members/libpt-ccc" } -libpt-net = { version = "0.2.0-alpha.1", path = "members/libpt-net" } +libpt-bintols = { version = "0.2.0-alpha.2", path = "members/libpt-bintols", registry="cscherr"} +libpt-core = { version = "0.2.0-alpha.2", path = "members/libpt-core", registry="cscherr" } +libpt-hedu = { version = "0.2.0-alpha.2", path = "members/libpt-hedu", registry="cscherr" } +libpt-log = { version = "0.2.0-alpha.2", path = "members/libpt-log", registry="cscherr" } +libpt-math = { version = "0.2.0-alpha.2", path = "members/libpt-math", registry="cscherr" } +libpt-ccc = { version = "0.2.0-alpha.2", path = "members/libpt-ccc", registry="cscherr" } +libpt-net = { version = "0.2.0-alpha.2", path = "members/libpt-net", registry="cscherr" } diff --git a/members/libpt-bin/Cargo.toml b/members/libpt-bin/Cargo.toml index 3f18142..a0cd981 100644 --- a/members/libpt-bin/Cargo.toml +++ b/members/libpt-bin/Cargo.toml @@ -31,11 +31,11 @@ path = "src/main/mod.rs" clap = { version = "4.4.4", features = ["derive"] } clap-num = "1.0.2" clap-verbosity-flag = "2.0.1" -libpt = { version = "0.2.0-alpha.1", path = "../..", features = [ +libpt = { version = "0.2.0-alpha.2", path = "../..", features = [ "default", "ccc", "math", "hedu", "net", "log", -] } +], registry = "cscherr" } diff --git a/members/libpt-bintols/Cargo.toml b/members/libpt-bintols/Cargo.toml index b9e1ccd..3d0ca88 100644 --- a/members/libpt-bintols/Cargo.toml +++ b/members/libpt-bintols/Cargo.toml @@ -16,5 +16,5 @@ categories.workspace = true [dependencies] num-traits = "0.2.16" -libpt-core = { version = "0.2.0-alpha.1", path = "../libpt-core" } -libpt-log = { version = "0.2.0-alpha.1", path = "../libpt-log" } +libpt-core = { version = "0.2.0-alpha.2", path = "../libpt-core", registry="cscherr" } +libpt-log = { version = "0.2.0-alpha.2", path = "../libpt-log", registry="cscherr" } diff --git a/members/libpt-ccc/Cargo.toml b/members/libpt-ccc/Cargo.toml index b7013aa..4c47bdd 100644 --- a/members/libpt-ccc/Cargo.toml +++ b/members/libpt-ccc/Cargo.toml @@ -17,6 +17,6 @@ categories.workspace = true [dependencies] num = "0.4.1" num-traits = "0.2.16" -libpt-core = { version = "0.2.0-alpha.1", path = "../libpt-core" } -libpt-log = { version = "0.2.0-alpha.1", path = "../libpt-log" } -libpt-math = { version = "0.2.0-alpha.1", path = "../libpt-math" } +libpt-core = { version = "0.2.0-alpha.2", path = "../libpt-core", registry="cscherr" } +libpt-log = { version = "0.2.0-alpha.2", path = "../libpt-log", registry="cscherr" } +libpt-math = { version = "0.2.0-alpha.2", path = "../libpt-math", registry="cscherr" } diff --git a/members/libpt-core/Cargo.toml b/members/libpt-core/Cargo.toml index 5d44d40..a2b89c9 100644 --- a/members/libpt-core/Cargo.toml +++ b/members/libpt-core/Cargo.toml @@ -15,4 +15,4 @@ categories.workspace = true [dependencies] anyhow = "1.0.79" cucumber = "0.20.2" -libpt-log = { version = "0.2.0-alpha.1", path = "../libpt-log" } +libpt-log = { version = "0.2.0-alpha.2", path = "../libpt-log", registry="cscherr" } diff --git a/members/libpt-hedu/Cargo.toml b/members/libpt-hedu/Cargo.toml index 4850fa0..1247caf 100644 --- a/members/libpt-hedu/Cargo.toml +++ b/members/libpt-hedu/Cargo.toml @@ -17,5 +17,5 @@ categories.workspace = true [dependencies] anyhow = { workspace = true } thiserror = { workspace = true } -libpt-log = { version = "0.2.0-alpha.1", path = "../libpt-log" } -libpt-bintols = { version = "0.2.0-alpha.1", path = "../libpt-bintols" } +libpt-log = { version = "0.2.0-alpha.2", path = "../libpt-log", registry="cscherr" } +libpt-bintols = { version = "0.2.0-alpha.2", path = "../libpt-bintols", registry="cscherr" } diff --git a/members/libpt-net/Cargo.toml b/members/libpt-net/Cargo.toml index 06e1107..43d80f1 100644 --- a/members/libpt-net/Cargo.toml +++ b/members/libpt-net/Cargo.toml @@ -16,9 +16,9 @@ categories.workspace = true [dependencies] humantime = "2.1.0" -libpt-core = { version = "0.2.0-alpha.1", path = "../libpt-core" } -libpt-log = { version = "0.2.0-alpha.1", path = "../libpt-log" } -libpt-math = { version = "0.2.0-alpha.1", path = "../libpt-math" } +libpt-core = { version = "0.2.0-alpha.2", path = "../libpt-core", registry="cscherr" } +libpt-log = { version = "0.2.0-alpha.2", path = "../libpt-log", registry="cscherr" } +libpt-math = { version = "0.2.0-alpha.2", path = "../libpt-math", registry="cscherr" } reqwest = { version = "0.11.20", features = ["blocking"] } serde = { version = "1.0.188", features = ["serde_derive"] } serde_json = "1.0.107"