diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-16 11:17:24 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-16 11:17:36 +0200 |
commit | 9c7dfa7a8ca71bd5067741917a6f96061290976b (patch) | |
tree | f419212cae8adfe2c15e0ba8cc35437f10916c29 | |
parent | fix(scripts/mkdb.sh): Also use the `$DATABASE_URL` variable as source source (diff) | |
download | yt-9c7dfa7a8ca71bd5067741917a6f96061290976b.zip |
build({flake,Cargo}.lock): Update
-rw-r--r-- | Cargo.lock | 95 | ||||
-rw-r--r-- | flake.lock | 6 |
2 files changed, 26 insertions, 75 deletions
diff --git a/Cargo.lock b/Cargo.lock index f2f5b61..4479cf9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -424,6 +424,18 @@ dependencies = [ ] [[package]] +name = "clap_complete" +version = "4.5.54" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aad5b1b4de04fead402672b48897030eec1f3bfe1550776322f59f6d6e6a5677" +dependencies = [ + "clap", + "clap_lex", + "is_executable", + "shlex", +] + +[[package]] name = "clap_derive" version = "4.5.40" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1311,6 +1323,15 @@ dependencies = [ ] [[package]] +name = "is_executable" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4a1b5bad6f9072935961dfbf1cced2f3d129963d091b6f69f007fe04e758ae2" +dependencies = [ + "winapi", +] + +[[package]] name = "is_terminal_polyfill" version = "1.70.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1798,16 +1819,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d" [[package]] -name = "nucleo-matcher" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf33f538733d1a5a3494b836ba913207f14d9d4a1d3cd67030c5061bdd2cac85" -dependencies = [ - "memchr", - "unicode-segmentation", -] - -[[package]] name = "num-bigint-dig" version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2031,50 +2042,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] -name = "pest" -version = "2.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323" -dependencies = [ - "memchr", - "thiserror 2.0.12", - "ucd-trie", -] - -[[package]] -name = "pest_derive" -version = "2.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc" -dependencies = [ - "pest", - "pest_generator", -] - -[[package]] -name = "pest_generator" -version = "2.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966" -dependencies = [ - "pest", - "pest_meta", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "pest_meta" -version = "2.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5" -dependencies = [ - "pest", - "sha2", -] - -[[package]] name = "phf" version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3634,16 +3601,6 @@ dependencies = [ ] [[package]] -name = "trinitry" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f814008587cd653ef1f92f9caf321e86a6f53899ec118fd50eaed55974863a40" -dependencies = [ - "pest", - "pest_derive", -] - -[[package]] name = "twox-hash" version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3662,12 +3619,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe4fa6e588762366f1eb4991ce59ad1b93651d0b769dfb4e4d1c5c4b943d1159" [[package]] -name = "ucd-trie" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" - -[[package]] name = "uname" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4451,15 +4402,16 @@ dependencies = [ "chrono", "chrono-humanize", "clap", + "clap_complete", "futures", "libmpv2", "log", "notify", - "nucleo-matcher", "owo-colors", "regex", "serde", "serde_json", + "shlex", "sqlx", "stderrlog", "tempfile", @@ -4467,7 +4419,6 @@ dependencies = [ "tokio", "tokio-util", "toml", - "trinitry", "url", "uu_fmt", "xdg", diff --git a/flake.lock b/flake.lock index 4957bbb..fcf9d4c 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1749984698, - "narHash": "sha256-y6frNvpXfbFWfzcCXs1WTRb0ynRbov0sWT9XJPBe+gQ=", + "lastModified": 1750005889, + "narHash": "sha256-5Ja4RfAWUqzX1B1MC/mSQzNBsTtXmlW4RQyPqmHVU90=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "68eb4789b2a9881bcaad2f88fb3771bc7c7f24fa", + "rev": "0fbc85d348db795d46453097b151c08712b86a84", "type": "github" }, "original": { |