Compare commits

...

4 commits

Author SHA1 Message Date
müde
6c731e3f5a set version to 0.4.2
Some checks failed
Rust / build (push) Failing after 54s
2026-02-21 22:37:22 +01:00
müde
7128f05984 update ffmpeg 2026-02-21 22:35:12 +01:00
müde
64b00bd0c9 cargo update 2026-02-21 22:25:18 +01:00
müde
1e6464fce5 nix flake update 2026-02-21 22:21:52 +01:00
4 changed files with 510 additions and 428 deletions

909
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
[package] [package]
name = "servicepoint-cli" name = "servicepoint-cli"
description = "A command line interface for the ServicePoint display." description = "A command line interface for the ServicePoint display."
version = "0.4.1" version = "0.4.2"
edition = "2021" edition = "2021"
rust-version = "1.80.0" rust-version = "1.80.0"
publish = true publish = true
@ -18,9 +18,9 @@ env_logger = "0.11"
log = "0.4" log = "0.4"
scap = "0.0.8" scap = "0.0.8"
image = "0.25" image = "0.25"
fast_image_resize = { version = "5.1", features = ["image"] } fast_image_resize = { version = "6", features = ["image"] }
tungstenite = "0.26" tungstenite = "0.28"
ffmpeg-next = "7.1" ffmpeg-next = "8"
servicepoint = "0.15.1" servicepoint = "0.15.1"
[profile.release] [profile.release]

18
flake.lock generated
View file

@ -30,11 +30,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1763384566, "lastModified": 1769799857,
"narHash": "sha256-r+wgI+WvNaSdxQmqaM58lVNvJYJ16zoq+tKN20cLst4=", "narHash": "sha256-88IFXZ7Sa1vxbz5pty0Io5qEaMQMMUPMonLa3Ls/ss4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "naersk", "repo": "naersk",
"rev": "d4155d6ebb70fbe2314959842f744aa7cabbbf6a", "rev": "9d4ed44d8b8cecdceb1d6fd76e74123d90ae6339",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -60,11 +60,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1764677808, "lastModified": 1771574726,
"narHash": "sha256-H3lC7knbXOBrHI9hITQ7modLuX20mYJVhZORL5ioms0=", "narHash": "sha256-D1PA3xQv/s4W3lnR9yJFSld8UOLr0a/cBWMQMXS+1Qg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "1aab89277eb2d87823d5b69bae631a2496cff57a", "rev": "c217913993d6c6f6805c3b1a3bda5e639adfde6d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -106,11 +106,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1762938485, "lastModified": 1770228511,
"narHash": "sha256-AlEObg0syDl+Spi4LsZIBrjw+snSVU4T8MOeuZJUJjM=", "narHash": "sha256-wQ6NJSuFqAEmIg2VMnLdCnUc0b7vslUohqqGGD+Fyxk=",
"owner": "numtide", "owner": "numtide",
"repo": "treefmt-nix", "repo": "treefmt-nix",
"rev": "5b4ee75aeefd1e2d5a1cc43cf6ba65eba75e83e4", "rev": "337a4fe074be1042a35086f15481d763b8ddc0e7",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -77,7 +77,7 @@
[ [
xe xe
xz xz
ffmpeg_6-headless.dev ffmpeg-headless.dev
] ]
++ lib.optionals pkgs.stdenv.isLinux ( ++ lib.optionals pkgs.stdenv.isLinux (
with pkgs; with pkgs;
@ -106,6 +106,7 @@
{ {
pkgs, pkgs,
system, system,
...
}: }:
{ {
default = pkgs.mkShell rec { default = pkgs.mkShell rec {