+
-This application allows you to control your AMD, Nvidia or Intel GPU on a Linux system.
+This application allows you to control your AMD, Nvidia or Intel GPU on a Linux
+system.
-| GPU info | Overclocking | Fan control |
-|----------------------------------------------|----------------------------------------------|---------------------------------------------|
-||||
-| Historical data |
-||
+| GPU info | Overclocking | Fan control |
+| ----------------------------------------- | ----------------------------------------- | ----------------------------------------- |
+|  |  |  |
+| Historical data | | |
+|  | | |
Current features:
@@ -18,9 +19,11 @@ Current features:
- Overclocking (GPU/VRAM clockspeed and voltage)
- Power states configuration (AMD only)
-All of the functionality works regardless of the desktop session (there is no dependency on X11 extensions).
+All of the functionality works regardless of the desktop session (there is no
+dependency on X11 extensions).
# Quick links
+
- [Installation](#installation)
- [Hardware support](https://github.com/ilya-zlobintsev/LACT/wiki/Hardware-Support)
- [Enable overclocking on AMD](https://github.com/ilya-zlobintsev/LACT/wiki/Overclocking-(AMD))
@@ -31,85 +34,127 @@ All of the functionality works regardless of the desktop session (there is no de
# Installation
-- Arch Linux: Install the package from official repositories: `pacman -S lact` (or `lact-git` from AUR for development builds).
-- Debian/Ubuntu/Derivatives: Download a .deb from [releases](https://github.com/ilya-zlobintsev/LACT/releases/).
+- Arch Linux: Install the package from official repositories: `pacman -S lact`
+ (or `lact-git` from AUR for development builds).
+- Debian/Ubuntu/Derivatives: Download a .deb from
+ [releases](https://github.com/ilya-zlobintsev/LACT/releases/).
- It is only available on Debian 12+ and Ubuntu 22.04+ as older versions don't ship gtk4.
-- Fedora: use the [Copr repository](https://copr.fedorainfracloud.org/coprs/ilyaz/LACT/), or download an RPM from [releases](https://github.com/ilya-zlobintsev/LACT/releases/).
-- Gentoo: Available in [GURU](https://github.com/gentoo/guru/tree/master/sys-apps/lact).
-- OpenSUSE: an RPM is available in [releases](https://github.com/ilya-zlobintsev/LACT/releases/).
+ It is only available on Debian 12+ and Ubuntu 22.04+ as older versions don't
+ ship gtk4.
+- Fedora: use the
+ [Copr repository](https://copr.fedorainfracloud.org/coprs/ilyaz/LACT/), or
+ download an RPM from
+ [releases](https://github.com/ilya-zlobintsev/LACT/releases/).
+- Gentoo: Available in
+ [GURU](https://github.com/gentoo/guru/tree/master/sys-apps/lact).
+- OpenSUSE: an RPM is available in
+ [releases](https://github.com/ilya-zlobintsev/LACT/releases/).
- Only tumbleweed is supported as leap does not have the required dependencies in the repos.
-- NixOS: There is a package available in [nixpkgs](https://search.nixos.org/packages?channel=24.05&from=0&size=50&sort=relevance&type=packages&query=lact)
-- Otherwise, build from source.
+ Only tumbleweed is supported as leap does not have the required dependencies
+ in the repos.
+- NixOS: There is a package available in
+ [nixpkgs](https://search.nixos.org/packages?channel=24.05&from=0&size=50&sort=relevance&type=packages&query=lact)
+- Flatpak (universal): Available in [releases](https://github.com/ilya-zlobintsev/LACT/releases/) (not yet published on Flathub).
-**Why is there no AppImage/Flatpak/other universal format?**
-See [here](./pkg/README.md#why-is-there-no-appimageflatpakdocker).
+ See the [Flatpak documentation](./flatpak/README.md) for setup notes.
+- Build from source.
-Note: Nvidia support requires the Nvidia proprietary driver with CUDA libraries installed.
+Note: Nvidia support requires the Nvidia proprietary driver with CUDA libraries
+installed.
## Development builds
-To get latest fixes or features that have not yet been released in a stable version, there are packages built from the latest commit that you can install from the [test release](https://github.com/ilya-zlobintsev/LACT/releases/tag/test-build) or using the `lact-git` AUR package on Arch-based distros.
+To get latest fixes or features that have not yet been released in a stable
+version, there are packages built from the latest commit that you can install
+from the
+[test release](https://github.com/ilya-zlobintsev/LACT/releases/tag/test-build)
+or using the `lact-git` AUR package on Arch-based distros.
-Note: the date of the test release is not the date when the packages were built, the actual date is specified next to the attached package files.
+Note: the date that GitHub shows next to the test release is not when the packages were built,
+the actual date is specified next to the attached package files.
# Usage
-Enable and start the service (otherwise you won't be able to change any settings):
+Enable and start the service (otherwise you won't be able to change any
+settings):
+
```
sudo systemctl enable --now lactd
```
+
You can now use the GUI to change settings and view information.
# Hardware support
-See the [Wiki page](https://github.com/ilya-zlobintsev/LACT/wiki/Hardware-Support)
+See the
+[Wiki page](https://github.com/ilya-zlobintsev/LACT/wiki/Hardware-Support)
# Configuration
-There is a configuration file available in `/etc/lact/config.yaml`. Most of the settings are accessible through the GUI, but some of them may be useful to be edited manually (like `admin_group` and `admin_user` to specify who has access to the daemon)
+There is a configuration file available in `/etc/lact/config.yaml`. Most of the
+settings are accessible through the GUI, but some of them may be useful to be
+edited manually (like `admin_group` and `admin_user` to specify who has access
+to the daemon)
See [CONFIG.md](./docs/CONFIG.md) for more information.
**Socket permissions setup:**
-By default, LACT uses either ether the `wheel` or `sudo` group (whichever is available) for the ownership of the unix socket that the GUI needs to connect to.
+By default, LACT uses either ether the `wheel` or `sudo` group (whichever is
+available) for the ownership of the unix socket that the GUI needs to connect
+to.
-On most desktop configurations (such as the default setup on Arch-based, most Debian-based or Fedora systems) this includes the default user, so you do not need to configure this.
+On most desktop configurations (such as the default setup on Arch-based, most
+Debian-based or Fedora systems) this includes the default user, so you do not
+need to configure this.
-However, some systems may have different user configuration. In particular, this has been reported to be a problem on OpenSUSE.
+However, some systems may have different user configuration. In particular, this
+has been reported to be a problem on OpenSUSE.
+
+To fix socket permissions in such configurations, edit `/etc/lact/config.yaml`
+and under the `daemon` section either:
-To fix socket permissions in such configurations, edit `/etc/lact/config.yaml` and under the `daemon` section either:
- Set `admin_user` to your username
-- Set `admin_group` to a group that your user is a part of
-Then restart the service (`sudo systemctl restart lactd`).
+- Set `admin_group` to a group that your user is a part of Then restart the
+ service (`sudo systemctl restart lactd`).
# Overclocking (AMD)
-Some functionality requires enabling an option in the amdgpu driver, see the [wiki page](https://github.com/ilya-zlobintsev/LACT/wiki/Overclocking-(AMD)) for more information.
+Some functionality requires enabling an option in the amdgpu driver, see the
+[wiki page](https://github.com/ilya-zlobintsev/LACT/wiki/Overclocking-(AMD)) for
+more information.
## Power profiles daemon note!
-If you are using `power-profiles-daemon` (which is installed by default on many distributions), by default it will override the amdgpu performance level setting according to its own profile.
+If you are using `power-profiles-daemon` (which is installed by default on many
+distributions), by default it will override the amdgpu performance level setting
+according to its own profile.
+
+To avoid this, create a file at
+`/etc/systemd/system/power-profiles-daemon.service.d/override.conf` with the
+following contents:
-To avoid this, create a file at `/etc/systemd/system/power-profiles-daemon.service.d/override.conf` with the following contents:
```
[Service]
ExecStart=
ExecStart=/usr/libexec/power-profiles-daemon --block-action=amdgpu_dpm
```
-Note: the `/usr/libexec` path might be different on your system, check it in `systemctl status power-profiles-daemon`
+
+Note: the `/usr/libexec` path might be different on your system, check it in
+`systemctl status power-profiles-daemon`
See https://github.com/ilya-zlobintsev/LACT/issues/370 for more information.
# Suspend/Resume
-As some of the GPU settings may get reset when suspending the system, LACT will reload them on system resume. This may not work on distributions which don't use systemd, as it relies on the `org.freedesktop.login2` DBus interface.
+As some of the GPU settings may get reset when suspending the system, LACT will
+reload them on system resume. This may not work on distributions which don't use
+systemd, as it relies on the `org.freedesktop.login2` DBus interface.
# Building from source
Dependencies:
+
- rust 1.76+
- gtk 4.6+
- git
@@ -121,37 +166,47 @@ Dependencies:
- vulkan-tools
Command to install all dependencies:
-- Fedora: `sudo dnf install rust cargo make git clang gtk4-devel libdrm-devel vulkan-tools`
-- Arch: `sudo pacman -S --needed base-devel git clang make rust gtk4 hwdata vulkan-tools`
+
+- Fedora:
+ `sudo dnf install rust cargo make git clang gtk4-devel libdrm-devel vulkan-tools`
+- Arch:
+ `sudo pacman -S --needed base-devel git clang make rust gtk4 hwdata vulkan-tools`
Steps:
+
- `git clone https://github.com/ilya-zlobintsev/LACT && cd LACT`
- `make`
- `sudo make install`
-It's possible to change which features LACT gets built with.
-To do so, replace the `make` command with the following variation:
+It's possible to change which features LACT gets built with. To do so, replace
+the `make` command with the following variation:
Headless build with no GUI:
+
```
make build-release-headless
```
Build GUI with libadwaita support:
+
```
make build-release-libadwaita
```
# Remote management
-It's possible to have the LACT daemon running on one machine, and then manage it remotely from another.
+It's possible to have the LACT daemon running on one machine, and then manage it
+remotely from another.
-This is disabled by default, as the TCP connection **does not have any authentication or encryption mechanism!**
-Make sure to only use it in trusted networks and/or set up appropriate firewall rules.
+This is disabled by default, as the TCP connection **does not have any
+authentication or encryption mechanism!** Make sure to only use it in trusted
+networks and/or set up appropriate firewall rules.
-To enable it, edit `/etc/lact/config.yaml` and add `tcp_listen_address` with your desired address and in the `daemon` section.
+To enable it, edit `/etc/lact/config.yaml` and add `tcp_listen_address` with
+your desired address and in the `daemon` section.
Example:
+
```yaml
daemon:
tcp_listen_address: 0.0.0.0:12853
@@ -162,68 +217,77 @@ daemon:
After this restart the service (`sudo systemctl restart lactd`).
-To connect to a remote instance with the GUI, run it with `lact gui --tcp-address 192.168.1.10:12853`.
+To connect to a remote instance with the GUI, run it with
+`lact gui --tcp-address 192.168.1.10:12853`.
# CLI
There is also a cli available.
-- List system GPUs:
+- List system GPUs:
- `lact cli list-gpus`
+ `lact cli list-gpus`
- Example output:
+ Example output:
- ```
- 10DE:2704-1462:5110-0000:09:00.0 (AD103 [GeForce RTX 4080])
- ```
+ ```
+ 10DE:2704-1462:5110-0000:09:00.0 (AD103 [GeForce RTX 4080])
+ ```
- Getting GPU information:
- `lact cli info`
+ `lact cli info`
- Example output:
+ Example output:
- ```
- $ lact cli info
- GPU 10DE:2704-1462:5110-0000:09:00.0:
- =====================================
- GPU Model: NVIDIA GeForce RTX 4080 (0x10DE:0x2704)
- Card Manufacturer: Micro-Star International Co., Ltd. [MSI] (0x1462)
- Card Model: Unknown (0x5110)
- Driver Used: nvidia 570.124.04
- VBIOS Version: 95.03.1E.00.60
- VRAM Size: 16376 MiB
- GPU Family: Ada
- Cuda Cores: 9728
- SM Count: 76
- ROP Count: 112 (14 * 8)
- VRAM Type: GDDR6x
- VRAM Manufacturer: Micron
- L2 Cache: 65536 KiB
- Resizeable bar: Enabled
- CPU Accessible VRAM: 16384
- Link Speed: 8 GT/s PCIe gen 3 x8
- ```
-
-The functionality of the CLI is quite limited. If you want to integrate LACT with some application/script, you should use the [API](API.md) instead.
+ ```
+ $ lact cli info
+ GPU 10DE:2704-1462:5110-0000:09:00.0:
+ =====================================
+ GPU Model: NVIDIA GeForce RTX 4080 (0x10DE:0x2704)
+ Card Manufacturer: Micro-Star International Co., Ltd. [MSI] (0x1462)
+ Card Model: Unknown (0x5110)
+ Driver Used: nvidia 570.124.04
+ VBIOS Version: 95.03.1E.00.60
+ VRAM Size: 16376 MiB
+ GPU Family: Ada
+ Cuda Cores: 9728
+ SM Count: 76
+ ROP Count: 112 (14 * 8)
+ VRAM Type: GDDR6x
+ VRAM Manufacturer: Micron
+ L2 Cache: 65536 KiB
+ Resizeable bar: Enabled
+ CPU Accessible VRAM: 16384
+ Link Speed: 8 GT/s PCIe gen 3 x8
+ ```
+
+The functionality of the CLI is quite limited. If you want to integrate LACT
+with some application/script, you should use the [API](API.md) instead.
# Reporting issues
-
+
When reporting issues, please include your system info and GPU model.
-If you're having an issue with changing the GPU's configuration, it's highly recommended to include a debug snapshot in the bug report.
-You can generate one using the option in the dropdown menu:
+If you're having an issue with changing the GPU's configuration, it's highly
+recommended to include a debug snapshot in the bug report. You can generate one
+using the option in the dropdown menu:

-The snapshot is an archive which includes the SysFS that LACT uses to interact with the GPU.
-
-If there's a crash, run `lact gui` from the command line to get GUI logs, check daemon logs in `journalctl -u lactd` for errors,
-and see `dmesg` for kernel logs that might include information about driver and system issues.
+The snapshot is an archive which includes the SysFS that LACT uses to interact
+with the GPU.
+
+If there's a crash, run `lact gui` from the command line to get GUI logs, check
+daemon logs in `journalctl -u lactd` for errors, and see `dmesg` for kernel logs
+that might include information about driver and system issues.
# Other tools
Here's a list of other useful tools for AMD GPUs on Linux:
-- [CoreCtrl](https://gitlab.com/corectrl/corectrl) - direct alternative to LACT, provides similar functionality in addition to CPU configuration with a Qt UI
-- [amdgpu_top](https://github.com/Umio-Yasuno/amdgpu_top) - tool for detailed real-time statistics on AMD GPUs
-- [Tuxclocker](https://github.com/Lurkki14/tuxclocker) - Qt overclocking tool, has support for AMD GPUs
+
+- [CoreCtrl](https://gitlab.com/corectrl/corectrl) - direct alternative to LACT,
+ provides similar functionality in addition to CPU configuration with a Qt UI
+- [amdgpu_top](https://github.com/Umio-Yasuno/amdgpu_top) - tool for detailed
+ real-time statistics on AMD GPUs
+- [Tuxclocker](https://github.com/Lurkki14/tuxclocker) - Qt overclocking tool,
+ has support for AMD GPUs
diff --git a/docs/API.md b/docs/API.md
index 97885a13..35399463 100644
--- a/docs/API.md
+++ b/docs/API.md
@@ -1,6 +1,6 @@
# Description
-The LACT Daemon exposes a JSON API over a unix socket or TCP, available on `/var/run/lactd.sock` or an arbitrary TCP port. You can configure who has access to the unix socket in `/etc/lact/config.yaml` in the `daemon.admin_group` or `daemon.admin_user` field. The TCP listener is disabled by default for security reasons, see [this README section](../README.md#remote-management) for how to enable it.
+The LACT Daemon exposes a JSON API over a unix socket or TCP, available on `/run/lactd.sock` or an arbitrary TCP port. You can configure who has access to the unix socket in `/etc/lact/config.yaml` in the `daemon.admin_group` or `daemon.admin_user` field. The TCP listener is disabled by default for security reasons, see [this README section](../README.md#remote-management) for how to enable it.
The API expects newline-separated JSON objects, and returns a JSON object for every request.
diff --git a/flatpak/README.md b/flatpak/README.md
new file mode 100644
index 00000000..426bcfac
--- /dev/null
+++ b/flatpak/README.md
@@ -0,0 +1,48 @@
+# Flatpak information
+
+LACT is available as a Flatpak package.
+However, due to sandbox restrictions, there are some extra steps needed to achieve full functionality.
+
+LACT uses a system daemon to interact with the GPU and manage configuration.
+For access to hardware and system settings the daemon needs to run as root.
+
+When you run the flatpak and the daemon is not detected, you will get a prompt to install it outside of the sandbox.
+This will automatically set up and start the system service. It is installed at `/etc/systemd/system/lactd.service`.
+
+If the setup was successful, you will now be able to use all of the functionality.
+
+Service status can be checked with `systemctl status lactd`.
+
+It is also possible to skip the service setup if you want to use LACT only for information and monitoring. This can work entirely in the Flatpak sandbox and does not require extra permissions.
+
+> Note: the setup script requires Polkit to be functional.
+
+## Service permissions
+
+The setup script will automatically configure the daemon in such a way that the user who ran the setup has access to it.
+It will not happen if you had an existing LACT config before setting up the Flatpak.
+
+In this scenario you have to manually edit `/etc/lact/config.yaml` and set `admin_user` in the `daemon` section.
+See this [README section](../README.md#configuration) for more information.
+
+**Flatpak specifically requires `admin_user` to be set** (and it is configured by default in the setup). Simply being part of a group like `wheel` does not grant the UI access to the daemon from Flatpak.
+
+## Uninstall
+
+To uninstall the flatpak-created service run the following commands:
+```bash
+sudo systemctl disable --now lactd
+sudo rm /etc/systemd/system/lactd.service
+```
+
+## Implementation details
+
+The service uses a binary distributed with the flatpak, but runs it outside of the sandbox.
+
+This is achieved by first getting the location where the LACT flatpak and its flatpak runtime are located on the host.
+These paths are used to run the daemon binary, while letting it use libraries provided by the flatpak runtime. This avoids any reliance on libraries being present or missing the host¹.
+
+Additionally, a `flatpak run` wrapper command is provided to the service so that it can call `vulkaninfo` inside of the flatpak sandbox.
+
+
+1. Nvidia's management library will still be loaded from the host, as it is not directly a part of the Flatpak runtime. The library is shipped with Nvidia drivers, so it is extremely unlikely that it is available in Flatpak while being missing on the host.
diff --git a/flatpak/generated-sources.json b/flatpak/generated-sources.json
new file mode 100644
index 00000000..823a572c
--- /dev/null
+++ b/flatpak/generated-sources.json
@@ -0,0 +1,4065 @@
+[
+ {
+ "type": "git",
+ "url": "https://gitlab.com/corectrl/copes",
+ "commit": "1bc002a030345787f0e11e0317975a2e4f2a22ee",
+ "dest": "flatpak-cargo/git/copes-1bc002a"
+ },
+ {
+ "type": "git",
+ "url": "https://github.com/ilya-zlobintsev/nvml-wrapper",
+ "commit": "d245c3010c72466cfb572f5baf91c91f7294bb36",
+ "dest": "flatpak-cargo/git/nvml-wrapper-d245c30"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/addr2line/addr2line-0.24.2.crate",
+ "sha256": "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1",
+ "dest": "cargo/vendor/addr2line-0.24.2"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1\", \"files\": {}}",
+ "dest": "cargo/vendor/addr2line-0.24.2",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/adler2/adler2-2.0.0.crate",
+ "sha256": "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627",
+ "dest": "cargo/vendor/adler2-2.0.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627\", \"files\": {}}",
+ "dest": "cargo/vendor/adler2-2.0.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/adler32/adler32-1.2.0.crate",
+ "sha256": "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234",
+ "dest": "cargo/vendor/adler32-1.2.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234\", \"files\": {}}",
+ "dest": "cargo/vendor/adler32-1.2.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/ahash/ahash-0.8.11.crate",
+ "sha256": "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011",
+ "dest": "cargo/vendor/ahash-0.8.11"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011\", \"files\": {}}",
+ "dest": "cargo/vendor/ahash-0.8.11",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/aho-corasick/aho-corasick-1.1.3.crate",
+ "sha256": "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916",
+ "dest": "cargo/vendor/aho-corasick-1.1.3"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916\", \"files\": {}}",
+ "dest": "cargo/vendor/aho-corasick-1.1.3",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/allocator-api2/allocator-api2-0.2.21.crate",
+ "sha256": "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923",
+ "dest": "cargo/vendor/allocator-api2-0.2.21"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923\", \"files\": {}}",
+ "dest": "cargo/vendor/allocator-api2-0.2.21",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/amdgpu-sysfs/amdgpu-sysfs-0.18.1.crate",
+ "sha256": "044edd65b23f8739322669f234976d95531ec7222b7f1cd87822532625acc228",
+ "dest": "cargo/vendor/amdgpu-sysfs-0.18.1"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"044edd65b23f8739322669f234976d95531ec7222b7f1cd87822532625acc228\", \"files\": {}}",
+ "dest": "cargo/vendor/amdgpu-sysfs-0.18.1",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/android-tzdata/android-tzdata-0.1.1.crate",
+ "sha256": "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0",
+ "dest": "cargo/vendor/android-tzdata-0.1.1"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0\", \"files\": {}}",
+ "dest": "cargo/vendor/android-tzdata-0.1.1",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/android_system_properties/android_system_properties-0.1.5.crate",
+ "sha256": "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311",
+ "dest": "cargo/vendor/android_system_properties-0.1.5"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311\", \"files\": {}}",
+ "dest": "cargo/vendor/android_system_properties-0.1.5",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/anstream/anstream-0.6.18.crate",
+ "sha256": "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b",
+ "dest": "cargo/vendor/anstream-0.6.18"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b\", \"files\": {}}",
+ "dest": "cargo/vendor/anstream-0.6.18",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/anstyle/anstyle-1.0.10.crate",
+ "sha256": "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9",
+ "dest": "cargo/vendor/anstyle-1.0.10"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9\", \"files\": {}}",
+ "dest": "cargo/vendor/anstyle-1.0.10",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/anstyle-parse/anstyle-parse-0.2.6.crate",
+ "sha256": "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9",
+ "dest": "cargo/vendor/anstyle-parse-0.2.6"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9\", \"files\": {}}",
+ "dest": "cargo/vendor/anstyle-parse-0.2.6",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/anstyle-query/anstyle-query-1.1.2.crate",
+ "sha256": "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c",
+ "dest": "cargo/vendor/anstyle-query-1.1.2"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c\", \"files\": {}}",
+ "dest": "cargo/vendor/anstyle-query-1.1.2",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/anstyle-wincon/anstyle-wincon-3.0.7.crate",
+ "sha256": "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e",
+ "dest": "cargo/vendor/anstyle-wincon-3.0.7"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e\", \"files\": {}}",
+ "dest": "cargo/vendor/anstyle-wincon-3.0.7",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/anyhow/anyhow-1.0.97.crate",
+ "sha256": "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f",
+ "dest": "cargo/vendor/anyhow-1.0.97"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f\", \"files\": {}}",
+ "dest": "cargo/vendor/anyhow-1.0.97",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/async-broadcast/async-broadcast-0.7.2.crate",
+ "sha256": "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532",
+ "dest": "cargo/vendor/async-broadcast-0.7.2"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532\", \"files\": {}}",
+ "dest": "cargo/vendor/async-broadcast-0.7.2",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/async-recursion/async-recursion-1.1.1.crate",
+ "sha256": "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11",
+ "dest": "cargo/vendor/async-recursion-1.1.1"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11\", \"files\": {}}",
+ "dest": "cargo/vendor/async-recursion-1.1.1",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/async-trait/async-trait-0.1.87.crate",
+ "sha256": "d556ec1359574147ec0c4fc5eb525f3f23263a592b1a9c07e0a75b427de55c97",
+ "dest": "cargo/vendor/async-trait-0.1.87"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"d556ec1359574147ec0c4fc5eb525f3f23263a592b1a9c07e0a75b427de55c97\", \"files\": {}}",
+ "dest": "cargo/vendor/async-trait-0.1.87",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/autocfg/autocfg-1.4.0.crate",
+ "sha256": "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26",
+ "dest": "cargo/vendor/autocfg-1.4.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26\", \"files\": {}}",
+ "dest": "cargo/vendor/autocfg-1.4.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/backtrace/backtrace-0.3.74.crate",
+ "sha256": "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a",
+ "dest": "cargo/vendor/backtrace-0.3.74"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a\", \"files\": {}}",
+ "dest": "cargo/vendor/backtrace-0.3.74",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/bindgen/bindgen-0.68.1.crate",
+ "sha256": "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078",
+ "dest": "cargo/vendor/bindgen-0.68.1"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078\", \"files\": {}}",
+ "dest": "cargo/vendor/bindgen-0.68.1",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/bitflags/bitflags-1.3.2.crate",
+ "sha256": "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a",
+ "dest": "cargo/vendor/bitflags-1.3.2"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a\", \"files\": {}}",
+ "dest": "cargo/vendor/bitflags-1.3.2",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/bitflags/bitflags-2.9.0.crate",
+ "sha256": "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd",
+ "dest": "cargo/vendor/bitflags-2.9.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd\", \"files\": {}}",
+ "dest": "cargo/vendor/bitflags-2.9.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/bumpalo/bumpalo-3.17.0.crate",
+ "sha256": "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf",
+ "dest": "cargo/vendor/bumpalo-3.17.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf\", \"files\": {}}",
+ "dest": "cargo/vendor/bumpalo-3.17.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/bytes/bytes-1.10.1.crate",
+ "sha256": "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a",
+ "dest": "cargo/vendor/bytes-1.10.1"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a\", \"files\": {}}",
+ "dest": "cargo/vendor/bytes-1.10.1",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/cairo-rs/cairo-rs-0.20.7.crate",
+ "sha256": "ae50b5510d86cf96ac2370e66d8dc960882f3df179d6a5a1e52bd94a1416c0f7",
+ "dest": "cargo/vendor/cairo-rs-0.20.7"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"ae50b5510d86cf96ac2370e66d8dc960882f3df179d6a5a1e52bd94a1416c0f7\", \"files\": {}}",
+ "dest": "cargo/vendor/cairo-rs-0.20.7",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/cairo-sys-rs/cairo-sys-rs-0.20.7.crate",
+ "sha256": "f18b6bb8e43c7eb0f2aac7976afe0c61b6f5fc2ab7bc4c139537ea56c92290df",
+ "dest": "cargo/vendor/cairo-sys-rs-0.20.7"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"f18b6bb8e43c7eb0f2aac7976afe0c61b6f5fc2ab7bc4c139537ea56c92290df\", \"files\": {}}",
+ "dest": "cargo/vendor/cairo-sys-rs-0.20.7",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/cc/cc-1.2.16.crate",
+ "sha256": "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c",
+ "dest": "cargo/vendor/cc-1.2.16"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c\", \"files\": {}}",
+ "dest": "cargo/vendor/cc-1.2.16",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/cexpr/cexpr-0.6.0.crate",
+ "sha256": "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766",
+ "dest": "cargo/vendor/cexpr-0.6.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766\", \"files\": {}}",
+ "dest": "cargo/vendor/cexpr-0.6.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/cfg-expr/cfg-expr-0.17.2.crate",
+ "sha256": "8d4ba6e40bd1184518716a6e1a781bf9160e286d219ccdb8ab2612e74cfe4789",
+ "dest": "cargo/vendor/cfg-expr-0.17.2"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"8d4ba6e40bd1184518716a6e1a781bf9160e286d219ccdb8ab2612e74cfe4789\", \"files\": {}}",
+ "dest": "cargo/vendor/cfg-expr-0.17.2",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/cfg-if/cfg-if-1.0.0.crate",
+ "sha256": "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd",
+ "dest": "cargo/vendor/cfg-if-1.0.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd\", \"files\": {}}",
+ "dest": "cargo/vendor/cfg-if-1.0.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/cfg_aliases/cfg_aliases-0.2.1.crate",
+ "sha256": "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724",
+ "dest": "cargo/vendor/cfg_aliases-0.2.1"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724\", \"files\": {}}",
+ "dest": "cargo/vendor/cfg_aliases-0.2.1",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/chrono/chrono-0.4.40.crate",
+ "sha256": "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c",
+ "dest": "cargo/vendor/chrono-0.4.40"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c\", \"files\": {}}",
+ "dest": "cargo/vendor/chrono-0.4.40",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/clang-sys/clang-sys-1.8.1.crate",
+ "sha256": "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4",
+ "dest": "cargo/vendor/clang-sys-1.8.1"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4\", \"files\": {}}",
+ "dest": "cargo/vendor/clang-sys-1.8.1",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/clap/clap-4.5.31.crate",
+ "sha256": "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767",
+ "dest": "cargo/vendor/clap-4.5.31"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767\", \"files\": {}}",
+ "dest": "cargo/vendor/clap-4.5.31",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/clap_builder/clap_builder-4.5.31.crate",
+ "sha256": "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863",
+ "dest": "cargo/vendor/clap_builder-4.5.31"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863\", \"files\": {}}",
+ "dest": "cargo/vendor/clap_builder-4.5.31",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/clap_derive/clap_derive-4.5.28.crate",
+ "sha256": "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed",
+ "dest": "cargo/vendor/clap_derive-4.5.28"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed\", \"files\": {}}",
+ "dest": "cargo/vendor/clap_derive-4.5.28",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/clap_lex/clap_lex-0.7.4.crate",
+ "sha256": "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6",
+ "dest": "cargo/vendor/clap_lex-0.7.4"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6\", \"files\": {}}",
+ "dest": "cargo/vendor/clap_lex-0.7.4",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/colorchoice/colorchoice-1.0.3.crate",
+ "sha256": "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990",
+ "dest": "cargo/vendor/colorchoice-1.0.3"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990\", \"files\": {}}",
+ "dest": "cargo/vendor/colorchoice-1.0.3",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/concurrent-queue/concurrent-queue-2.5.0.crate",
+ "sha256": "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973",
+ "dest": "cargo/vendor/concurrent-queue-2.5.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973\", \"files\": {}}",
+ "dest": "cargo/vendor/concurrent-queue-2.5.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/condtype/condtype-1.3.0.crate",
+ "sha256": "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af",
+ "dest": "cargo/vendor/condtype-1.3.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af\", \"files\": {}}",
+ "dest": "cargo/vendor/condtype-1.3.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/configparser/configparser-3.1.0.crate",
+ "sha256": "e57e3272f0190c3f1584272d613719ba5fc7df7f4942fe542e63d949cf3a649b",
+ "dest": "cargo/vendor/configparser-3.1.0"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"e57e3272f0190c3f1584272d613719ba5fc7df7f4942fe542e63d949cf3a649b\", \"files\": {}}",
+ "dest": "cargo/vendor/configparser-3.1.0",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "archive",
+ "archive-type": "tar-gzip",
+ "url": "https://static.crates.io/crates/console/console-0.15.11.crate",
+ "sha256": "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8",
+ "dest": "cargo/vendor/console-0.15.11"
+ },
+ {
+ "type": "inline",
+ "contents": "{\"package\": \"054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8\", \"files\": {}}",
+ "dest": "cargo/vendor/console-0.15.11",
+ "dest-filename": ".cargo-checksum.json"
+ },
+ {
+ "type": "shell",
+ "commands": [
+ "cp -r --reflink=auto \"flatpak-cargo/git/copes-1bc002a/.\" \"cargo/vendor/copes\""
+ ]
+ },
+ {
+ "type": "inline",
+ "contents": "[package]\nname = \"copes\"\nversion = \"1.1.0-dev\"\nauthors = [ \"Juan Palacios LACT lets you configure and monitor your AMD, Nvidia or Intel GPU on Linux.
+Supported functionality:
+