sub crates are now version agnostic to other local crates
Cargo Check, Format, Fix and Test / cargo CI (push) Successful in 2m13s Details

This commit is contained in:
Christoph J. Scherr 2024-01-16 15:59:04 +01:00
parent b58dc3dc44
commit b2435f3963
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
4 changed files with 9 additions and 9 deletions

View File

@ -13,7 +13,7 @@ members = [
default-members = [".", "members/libpt-bin", "members/libpt-core"]
[workspace.package]
publish = true
version = "0.1.8"
version = "0.2.0"
edition = "2021"
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT"

View File

@ -16,5 +16,5 @@ categories.workspace = true
[dependencies]
num-traits = "0.2.16"
libpt-core = { version = "0.1.0", path = "../libpt-core" }
libpt-log = { version = "0.1.0", path = "../libpt-log" }
libpt-core = { path = "../libpt-core" }
libpt-log = { path = "../libpt-log" }

View File

@ -17,6 +17,6 @@ categories.workspace = true
[dependencies]
num = "0.4.1"
num-traits = "0.2.16"
libpt-core = { version = "0.1.7", path = "../libpt-core" }
libpt-log = { version = "0.1.7", path = "../libpt-log" }
libpt-math = { version = "0.1.7", path = "../libpt-math" }
libpt-core = { path = "../libpt-core" }
libpt-log = { path = "../libpt-log" }
libpt-math = { path = "../libpt-math" }

View File

@ -16,9 +16,9 @@ categories.workspace = true
[dependencies]
humantime = "2.1.0"
libpt-core = { version = "0.1.0", path = "../libpt-core" }
libpt-log = { version = "0.1.0", path = "../libpt-log" }
libpt-math = { version = "0.1.0", path = "../libpt-math" }
libpt-core = { path = "../libpt-core" }
libpt-log = { path = "../libpt-log" }
libpt-math = { path = "../libpt-math" }
reqwest = { version = "0.11.20", features = ["blocking"] }
serde = { version = "1.0.188", features = ["serde_derive"] }
serde_json = "1.0.107"