chore: move common deps to workspace root

This commit is contained in:
jane400 2024-10-02 17:35:44 +02:00 committed by jane400
parent b320ca0c61
commit afcfe0c9ef
4 changed files with 632 additions and 147 deletions

746
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -13,5 +13,12 @@ license = "AGPL-3.0-only"
version = "0.1.0"
[workspace.dependencies]
secrecy = { version = "0.10"}
reqwest = { version = "0.12", features = ["json", "cookies", "gzip", "http2"] }
secrecy = { version = "0.10", features = ["serde"] }
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",
] }

View file

@ -15,9 +15,9 @@ num_enum = { version = "0.7", optional = true }
rand = "0.8.5"
random-string = "1.1.0"
reqwest = { workspace = true }
secrecy = { workspace = true, features = ["serde"]}
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
secrecy = { workspace = true}
serde = { workspace = true }
serde_json = { workspace = true }
serde_repr = { version = "0.1.18", optional = true }
serde_ignored = "0.1"
url = "2.5.0"
@ -28,8 +28,8 @@ base64 = "0.22"
# sha2 also used in briefankuendigung and packstation_register_regtoken
sha2 = "0.10.8"
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"
thiserror = "1.0.56"

View file

@ -7,17 +7,19 @@ version.workspace = true
[dependencies]
# using git version, for https://github.com/Relm4/Relm4/pull/677
relm4 = { version = "0.9", features = [
"libadwaita",
"macros",
], git = "https://github.com/Relm4/Relm4.git" }
relm4-icons = { version = "0.9", git = "https://github.com/Relm4/icons.git" }
relm4 = { workspace = true }
relm4-icons = { version = "0.9" }
tracker = "0.2"
adw = { package = "libadwaita", version = "0.7", features = ["v1_6"] }
aperture = "0.7"
webkit = { package = "webkit6", version = "0.4" }
reqwest = { workspace = true }
libpaket = { path = "../libpaket" }
glycin = { version = "2.0.0-beta", features = ["gdk4"] }
oo7 = { version = "0.3" }
futures = "0.3"
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 }