Compare commits

..

3 commits

Author SHA1 Message Date
jane400
6d68c6500b chore: update nix with git hashes
Doesn't work yet, as a recent libadwaita and gtk4.0 is needed.
2024-09-19 22:41:58 +02:00
jane400
8f3750197b chore: update cargo.lock 2024-09-19 22:36:14 +02:00
jane400
7ac87edc94 chore: remove unneeded dependency 2024-09-19 22:35:53 +02:00
3 changed files with 12 additions and 20 deletions

20
Cargo.lock generated
View file

@ -328,9 +328,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
[[package]] [[package]]
name = "bytes" name = "bytes"
version = "1.7.1" version = "1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
[[package]] [[package]]
name = "cairo-rs" name = "cairo-rs"
@ -366,9 +366,9 @@ dependencies = [
[[package]] [[package]]
name = "cc" name = "cc"
version = "1.1.20" version = "1.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45bcde016d64c21da4be18b655631e5ab6d3107607e71a73a9f53eb48aae23fb" checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0"
dependencies = [ dependencies = [
"jobserver", "jobserver",
"libc", "libc",
@ -2085,9 +2085,7 @@ dependencies = [
"libpaket", "libpaket",
"oo7", "oo7",
"relm4", "relm4",
"relm4-components",
"relm4-icons", "relm4-icons",
"relm4-macros",
"reqwest", "reqwest",
"tracker", "tracker",
"webkit6", "webkit6",
@ -2355,16 +2353,6 @@ dependencies = [
"tracing", "tracing",
] ]
[[package]]
name = "relm4-components"
version = "0.9.0"
source = "git+https://github.com/Relm4/Relm4.git#bd9d43fa6c0a88814097ec799d217075b408acd2"
dependencies = [
"once_cell",
"relm4",
"tracker",
]
[[package]] [[package]]
name = "relm4-css" name = "relm4-css"
version = "0.9.0" version = "0.9.0"

View file

@ -18,11 +18,17 @@
glib-networking, glib-networking,
}: rustPlatform.buildRustPackage { }: rustPlatform.buildRustPackage {
pname = "paket"; pname = "paket";
version = "unstable-2024-08-28"; version = "unstable-2024-09-28";
src = nix-gitignore.gitignoreSource [] ./.; src = nix-gitignore.gitignoreSource [] ./.;
cargoLock.lockFile = ./Cargo.lock; cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"relm4-0.9.0" = "sha256-iFxi2ZWdzWtui85IOfMIfyuPDbQO69u5VLk0a9ebatM=";
"relm4-icons-0.9.0" = "sha256-UUo1wIvJL2MryUFICnmVq6LoPuNaZ9nKcNGCCF8cx+k=";
};
};
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config

View file

@ -8,8 +8,6 @@ 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 = [ "libadwaita", "macros" ], git = "https://github.com/Relm4/Relm4.git" } relm4 = { version = "0.9", features = [ "libadwaita", "macros" ], git = "https://github.com/Relm4/Relm4.git" }
relm4-components = { version = "0.9", git = "https://github.com/Relm4/Relm4.git" }
relm4-macros = { version = "0.9", git = "https://github.com/Relm4/Relm4.git" }
relm4-icons = { version = "0.9", git = "https://github.com/Relm4/icons.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" ]}