[db] Fix database missing indexes
Some checks failed
CI / Rustfmt (push) Successful in 38s
CI / Flatpak (push) Failing after 10m11s

This commit is contained in:
2026-03-19 08:40:09 -04:00
parent 94d6286ee9
commit 750cba8351
6 changed files with 146 additions and 51 deletions

View File

@ -1,14 +1,14 @@
{
"id": "com.ranfdev.Notify.Devel",
"runtime": "org.gnome.Platform",
"runtime-version": "47",
"sdk": "org.gnome.Sdk",
"sdk-extensions": [
"id" : "com.ranfdev.Notify.Devel",
"runtime" : "org.gnome.Platform",
"runtime-version" : "47",
"sdk" : "org.gnome.Sdk",
"sdk-extensions" : [
"org.freedesktop.Sdk.Extension.rust-stable",
"org.freedesktop.Sdk.Extension.llvm18"
],
"command": "notify",
"finish-args": [
"command" : "notify",
"finish-args" : [
"--share=ipc",
"--share=network",
"--socket=fallback-x11",
@ -19,48 +19,51 @@
"--env=RUST_BACKTRACE=1",
"--talk-name=org.freedesktop.Notifications"
],
"build-options": {
"append-path": "/usr/lib/sdk/rust-stable/bin:/usr/lib/sdk/llvm18/bin",
"build-args": [
"build-options" : {
"append-path" : "/usr/lib/sdk/rust-stable/bin:/usr/lib/sdk/llvm18/bin",
"build-args" : [
"--share=network"
],
"env": {
"CARGO_REGISTRIES_CRATES_IO_PROTOCOL": "sparse",
"CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER": "clang",
"CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS": "-C link-arg=-fuse-ld=/usr/lib/sdk/rust-stable/bin/mold",
"CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER": "clang",
"CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS": "-C link-arg=-fuse-ld=/usr/lib/sdk/rust-stable/bin/mold"
"env" : {
"CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER" : "clang",
"CARGO_REGISTRIES_CRATES_IO_PROTOCOL" : "sparse",
"CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS" : "-C link-arg=-fuse-ld=/usr/lib/sdk/rust-stable/bin/mold",
"CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER" : "clang",
"CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS" : "-C link-arg=-fuse-ld=/usr/lib/sdk/rust-stable/bin/mold"
},
"test-args": [
"test-args" : [
"--socket=x11",
"--share=network"
]
},
"modules": [
"modules" : [
{
"name": "blueprint-compiler",
"buildsystem": "meson",
"cleanup": ["*"],
"sources": [
{
"type": "git",
"url": "https://gitlab.gnome.org/jwestman/blueprint-compiler",
"tag": "v0.14.0",
"commit": "8e10fcf8692108b9d4ab78f41086c5d7773ef864"
}
]
"name" : "blueprint-compiler",
"buildsystem" : "meson",
"cleanup" : [
"*"
],
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler",
"tag" : "v0.14.0",
"commit" : "8e10fcf8692108b9d4ab78f41086c5d7773ef864"
}
]
},
{
"name": "notify",
"buildsystem": "meson",
"run-tests": true,
"config-opts": [
"-Dprofile=development"
"name" : "notify",
"buildsystem" : "meson",
"run-tests" : true,
"config-opts" : [
"-Dprofile=development",
"--libdir=lib"
],
"sources": [
"sources" : [
{
"type": "dir",
"path": "../"
"type" : "dir",
"path" : "../"
}
]
}