Compare commits
No commits in common. "6d68c6500b8226e53b46abf30dcd12dd8773818c" and "e041349ee97941952bde32285b89f4d524904ee7" have entirely different histories.
6d68c6500b
...
e041349ee9
3 changed files with 20 additions and 12 deletions
20
Cargo.lock
generated
20
Cargo.lock
generated
|
@ -328,9 +328,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bytes"
|
name = "bytes"
|
||||||
version = "1.7.2"
|
version = "1.7.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
|
checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cairo-rs"
|
name = "cairo-rs"
|
||||||
|
@ -366,9 +366,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cc"
|
name = "cc"
|
||||||
version = "1.1.21"
|
version = "1.1.20"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0"
|
checksum = "45bcde016d64c21da4be18b655631e5ab6d3107607e71a73a9f53eb48aae23fb"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"jobserver",
|
"jobserver",
|
||||||
"libc",
|
"libc",
|
||||||
|
@ -2085,7 +2085,9 @@ dependencies = [
|
||||||
"libpaket",
|
"libpaket",
|
||||||
"oo7",
|
"oo7",
|
||||||
"relm4",
|
"relm4",
|
||||||
|
"relm4-components",
|
||||||
"relm4-icons",
|
"relm4-icons",
|
||||||
|
"relm4-macros",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"tracker",
|
"tracker",
|
||||||
"webkit6",
|
"webkit6",
|
||||||
|
@ -2353,6 +2355,16 @@ 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"
|
||||||
|
|
10
default.nix
10
default.nix
|
@ -18,17 +18,11 @@
|
||||||
glib-networking,
|
glib-networking,
|
||||||
}: rustPlatform.buildRustPackage {
|
}: rustPlatform.buildRustPackage {
|
||||||
pname = "paket";
|
pname = "paket";
|
||||||
version = "unstable-2024-09-28";
|
version = "unstable-2024-08-28";
|
||||||
|
|
||||||
src = nix-gitignore.gitignoreSource [] ./.;
|
src = nix-gitignore.gitignoreSource [] ./.;
|
||||||
|
|
||||||
cargoLock = {
|
cargoLock.lockFile = ./Cargo.lock;
|
||||||
lockFile = ./Cargo.lock;
|
|
||||||
outputHashes = {
|
|
||||||
"relm4-0.9.0" = "sha256-iFxi2ZWdzWtui85IOfMIfyuPDbQO69u5VLk0a9ebatM=";
|
|
||||||
"relm4-icons-0.9.0" = "sha256-UUo1wIvJL2MryUFICnmVq6LoPuNaZ9nKcNGCCF8cx+k=";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkg-config
|
pkg-config
|
||||||
|
|
|
@ -8,6 +8,8 @@ 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" ]}
|
||||||
|
|
Loading…
Reference in a new issue