Merge pull request 'update dependencies' (#5) from next into main
All checks were successful
Rust / build (push) Successful in 9m17s

Reviewed-on: #5
This commit is contained in:
vinzenz 2025-06-28 15:28:11 +02:00
commit 2a4818dc21
5 changed files with 318 additions and 235 deletions

527
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.0" version = "0.4.1"
edition = "2021" edition = "2021"
rust-version = "1.80.0" rust-version = "1.80.0"
publish = true publish = true
@ -17,14 +17,11 @@ clap = { version = "4.5", features = ["derive"] }
env_logger = "0.11" env_logger = "0.11"
log = "0.4" log = "0.4"
scap = "0.0.8" scap = "0.0.8"
image = "0.25.5" image = "0.25"
fast_image_resize = { version = "5.1", features = ["image"] } fast_image_resize = { version = "5.1", features = ["image"] }
tungstenite = "0.26" tungstenite = "0.26"
ffmpeg-next = "7.1.0" ffmpeg-next = "7.1"
servicepoint = "0.15.1"
[dependencies.servicepoint]
package = "servicepoint"
version = "0.14.1"
[profile.release] [profile.release]
lto = true # Enable link-time optimization lto = true # Enable link-time optimization

View file

@ -21,14 +21,9 @@ If you have set your PATH to include the ~/.cargo/bin, you can now run `servicep
## Running with nix ## Running with nix
```shell ```shell
# from CCCB Forgejo
nix run git+https://git.berlin.ccc.de/servicepoint/servicepoint-cli.git -- <args> nix run git+https://git.berlin.ccc.de/servicepoint/servicepoint-cli.git -- <args>
# from GitHub mirror
nix run github:kaesaecracker/servicepoint-cli -- <args>
``` ```
## Running a debug build ## Running a debug build
```shell ```shell

View file

@ -37,16 +37,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1746183838, "lastModified": 1750969886,
"narHash": "sha256-kwaaguGkAqTZ1oK0yXeQ3ayYjs8u/W7eEfrFpFfIDFA=", "narHash": "sha256-zW/OFnotiz/ndPFdebpo3X0CrbVNf22n4DjN2vxlb58=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "bf3287dac860542719fe7554e21e686108716879", "rev": "a676066377a2fe7457369dd37c31fd2263b662f4",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-24.11", "ref": "nixos-25.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View file

@ -2,7 +2,7 @@
description = "Flake for command line interface of the ServicePoint display."; description = "Flake for command line interface of the ServicePoint display.";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
nix-filter.url = "github:numtide/nix-filter"; nix-filter.url = "github:numtide/nix-filter";
naersk = { naersk = {
url = "github:nix-community/naersk"; url = "github:nix-community/naersk";