generated from PlexSheep/baserepo
sub crates are now version agnostic to other local crates
Cargo Check, Format, Fix and Test / cargo CI (push) Successful in 2m13s
Details
Cargo Check, Format, Fix and Test / cargo CI (push) Successful in 2m13s
Details
This commit is contained in:
parent
b58dc3dc44
commit
b2435f3963
|
@ -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"
|
||||
|
|
|
@ -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" }
|
||||
|
|
|
@ -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" }
|
||||
|
|
|
@ -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"
|
||||
|
|
Reference in New Issue