Compare commits
No commits in common. "2a4818dc2158cbdad34a701ab12d0b1cf7f52c46" and "e9d3b32f57674e06db1ebf0762bfd736e1f5ea31" have entirely different histories.
2a4818dc21
...
e9d3b32f57
523
Cargo.lock
generated
523
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
11
Cargo.toml
11
Cargo.toml
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "servicepoint-cli"
|
||||
description = "A command line interface for the ServicePoint display."
|
||||
version = "0.4.1"
|
||||
version = "0.4.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.80.0"
|
||||
publish = true
|
||||
|
@ -17,11 +17,14 @@ clap = { version = "4.5", features = ["derive"] }
|
|||
env_logger = "0.11"
|
||||
log = "0.4"
|
||||
scap = "0.0.8"
|
||||
image = "0.25"
|
||||
image = "0.25.5"
|
||||
fast_image_resize = { version = "5.1", features = ["image"] }
|
||||
tungstenite = "0.26"
|
||||
ffmpeg-next = "7.1"
|
||||
servicepoint = "0.15.1"
|
||||
ffmpeg-next = "7.1.0"
|
||||
|
||||
[dependencies.servicepoint]
|
||||
package = "servicepoint"
|
||||
version = "0.14.1"
|
||||
|
||||
[profile.release]
|
||||
lto = true # Enable link-time optimization
|
||||
|
|
|
@ -21,9 +21,14 @@ If you have set your PATH to include the ~/.cargo/bin, you can now run `servicep
|
|||
## Running with nix
|
||||
|
||||
```shell
|
||||
# from CCCB Forgejo
|
||||
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
|
||||
|
||||
```shell
|
||||
|
|
|
@ -37,16 +37,16 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1750969886,
|
||||
"narHash": "sha256-zW/OFnotiz/ndPFdebpo3X0CrbVNf22n4DjN2vxlb58=",
|
||||
"lastModified": 1746183838,
|
||||
"narHash": "sha256-kwaaguGkAqTZ1oK0yXeQ3ayYjs8u/W7eEfrFpFfIDFA=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "a676066377a2fe7457369dd37c31fd2263b662f4",
|
||||
"rev": "bf3287dac860542719fe7554e21e686108716879",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-25.05",
|
||||
"ref": "nixos-24.11",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
description = "Flake for command line interface of the ServicePoint display.";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
||||
nix-filter.url = "github:numtide/nix-filter";
|
||||
naersk = {
|
||||
url = "github:nix-community/naersk";
|
||||
|
|
Loading…
Reference in a new issue