chore: move common deps to workspace root
This commit is contained in:
parent
b320ca0c61
commit
afcfe0c9ef
4 changed files with 632 additions and 147 deletions
746
Cargo.lock
generated
746
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -13,5 +13,12 @@ license = "AGPL-3.0-only"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
secrecy = { version = "0.10"}
|
secrecy = { version = "0.10", features = ["serde"] }
|
||||||
reqwest = { version = "0.12", features = ["json", "cookies", "gzip", "http2"] }
|
reqwest = { version = "0.12", features = ["json", "cookies", "gzip", "http2"] }
|
||||||
|
serde = { version = "1.0.195", features = ["derive"] }
|
||||||
|
serde_json = "1.0.111"
|
||||||
|
uuid = { version = "1.7.0", features = ["v4"] }
|
||||||
|
relm4 = { git = "https://github.com/Relm4/Relm4.git", features = [
|
||||||
|
"libadwaita",
|
||||||
|
"macros",
|
||||||
|
] }
|
||||||
|
|
|
@ -15,9 +15,9 @@ num_enum = { version = "0.7", optional = true }
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
random-string = "1.1.0"
|
random-string = "1.1.0"
|
||||||
reqwest = { workspace = true }
|
reqwest = { workspace = true }
|
||||||
secrecy = { workspace = true, features = ["serde"]}
|
secrecy = { workspace = true}
|
||||||
serde = { version = "1.0.195", features = ["derive"] }
|
serde = { workspace = true }
|
||||||
serde_json = "1.0.111"
|
serde_json = { workspace = true }
|
||||||
serde_repr = { version = "0.1.18", optional = true }
|
serde_repr = { version = "0.1.18", optional = true }
|
||||||
serde_ignored = "0.1"
|
serde_ignored = "0.1"
|
||||||
url = "2.5.0"
|
url = "2.5.0"
|
||||||
|
@ -28,8 +28,8 @@ base64 = "0.22"
|
||||||
# sha2 also used in briefankuendigung and packstation_register_regtoken
|
# sha2 also used in briefankuendigung and packstation_register_regtoken
|
||||||
sha2 = "0.10.8"
|
sha2 = "0.10.8"
|
||||||
urlencoding = "2.1.3"
|
urlencoding = "2.1.3"
|
||||||
|
uuid = { workspace = true, features = ["serde"], optional = true }
|
||||||
|
|
||||||
uuid = { version = "1.7.0", features = ["v4", "serde"], optional = true }
|
|
||||||
serde_newtype = "0.1.1"
|
serde_newtype = "0.1.1"
|
||||||
thiserror = "1.0.56"
|
thiserror = "1.0.56"
|
||||||
|
|
||||||
|
|
|
@ -7,17 +7,19 @@ version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# using git version, for https://github.com/Relm4/Relm4/pull/677
|
# using git version, for https://github.com/Relm4/Relm4/pull/677
|
||||||
relm4 = { version = "0.9", features = [
|
relm4 = { workspace = true }
|
||||||
"libadwaita",
|
relm4-icons = { version = "0.9" }
|
||||||
"macros",
|
|
||||||
], git = "https://github.com/Relm4/Relm4.git" }
|
|
||||||
relm4-icons = { version = "0.9", git = "https://github.com/Relm4/icons.git" }
|
|
||||||
tracker = "0.2"
|
tracker = "0.2"
|
||||||
adw = { package = "libadwaita", version = "0.7", features = ["v1_6"] }
|
adw = { package = "libadwaita", version = "0.7", features = ["v1_6"] }
|
||||||
|
aperture = "0.7"
|
||||||
webkit = { package = "webkit6", version = "0.4" }
|
webkit = { package = "webkit6", version = "0.4" }
|
||||||
reqwest = { workspace = true }
|
|
||||||
libpaket = { path = "../libpaket" }
|
libpaket = { path = "../libpaket" }
|
||||||
glycin = { version = "2.0.0-beta", features = ["gdk4"] }
|
glycin = { version = "2.0.0-beta", features = ["gdk4"] }
|
||||||
oo7 = { version = "0.3" }
|
oo7 = { version = "0.3" }
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
gtk = { package = "gtk4", version = "0.9", features = ["v4_16"] }
|
gtk = { package = "gtk4", version = "0.9", features = ["v4_16"] }
|
||||||
|
reqwest = { workspace = true }
|
||||||
|
secrecy = { workspace = true }
|
||||||
|
serde = { workspace = true }
|
||||||
|
serde_json = { workspace = true }
|
||||||
|
uuid = { workspace = true }
|
||||||
|
|
Loading…
Reference in a new issue