Compare commits

...

2 Commits

Author SHA1 Message Date
939ccc90fe v5
Some checks failed
CI / Typos (push) Successful in 7s
CI / Clippy (push) Successful in 48s
CI / Check version (push) Has been skipped
Release / release (push) Failing after 49s
CI / Build and test (push) Successful in 3m53s
2025-05-14 19:16:47 -07:00
25d62b623a Fix build (#5)
Some checks failed
CI / Typos (push) Successful in 8s
CI / Clippy (push) Has started running
CI / Build and test (push) Has been cancelled
CI / Check version (push) Has been cancelled
Release / release (push) Has been cancelled
Reviewed-on: #5
2025-05-14 19:14:47 -07:00
3 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ jobs:
run: | run: |
sudo apt update sudo apt update
DEBIAN_FRONTEND=noninteractive \ DEBIAN_FRONTEND=noninteractive \
sudo apt install --yes rustup \ sudo apt install --yes rustup
rustup default stable rustup default stable
- name: Run clippy - name: Run clippy
@ -44,7 +44,7 @@ jobs:
run: | run: |
sudo apt update sudo apt update
DEBIAN_FRONTEND=noninteractive \ DEBIAN_FRONTEND=noninteractive \
sudo apt install --yes rustup \ sudo apt install --yes rustup
rustup default stable rustup default stable
- name: Build - name: Build

View File

@ -1,7 +1,7 @@
[package] [package]
name = "pick" name = "pick"
version = "0.0.5" version = "0.0.5"
edition = "2024" edition = "2021"
# #
# MARK: lints # MARK: lints

View File

@ -1,7 +1,7 @@
{ lib, fetchgit, rustPlatform }: { lib, fetchgit, rustPlatform }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "pick"; pname = "pick";
version = "0.0.4"; version = "0.0.5";
cargoLock.lockFile = src + /Cargo.lock; cargoLock.lockFile = src + /Cargo.lock;
src = builtins.fetchGit { src = builtins.fetchGit {