Compare commits
10 commits
adaa032f69
...
be64811bdd
Author | SHA1 | Date | |
---|---|---|---|
be64811bdd | |||
3686a6d0f8 | |||
25f39d8c9b | |||
d74625e2b3 | |||
d200bcb9b5 | |||
![]() |
a9d6c1b327 | ||
![]() |
631470324c | ||
![]() |
e091e03d5a | ||
![]() |
14b6923e60 | ||
1a1c5d24f6 |
9 changed files with 389 additions and 248 deletions
|
@ -1,4 +1,4 @@
|
||||||
name: Rust
|
name: Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -14,15 +14,14 @@ permissions:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: nixos-x86_64-linux
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Build release
|
- run: cargo build --release
|
||||||
run: cargo build --release
|
|
||||||
|
|
||||||
- name: Upload release assets
|
- name: Upload release assets
|
||||||
uses: softprops/action-gh-release@v2
|
uses: https://gitea.com/actions/gitea-release-action@v1
|
||||||
with:
|
with:
|
||||||
files: ${{ env.BIN_NAME }}
|
files: ${{ env.BIN_NAME }}
|
1
.github/CODEOWNERS
vendored
1
.github/CODEOWNERS
vendored
|
@ -1 +0,0 @@
|
||||||
* @troylusty
|
|
10
.github/dependabot.yml
vendored
10
.github/dependabot.yml
vendored
|
@ -1,10 +0,0 @@
|
||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "cargo"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "weekly"
|
|
||||||
groups:
|
|
||||||
dev-dependencies:
|
|
||||||
patterns:
|
|
||||||
- "*"
|
|
590
Cargo.lock
generated
590
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
18
Cargo.toml
18
Cargo.toml
|
@ -1,22 +1,22 @@
|
||||||
[package]
|
[package]
|
||||||
name = "packard"
|
name = "packard"
|
||||||
version = "0.0.3"
|
version = "0.0.4"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A terminal based feed checker."
|
description = "A terminal based feed checker."
|
||||||
authors = ["Troy Lusty <hello@troylusty.com>"]
|
authors = ["Troy Lusty <hello@troylusty.com>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "0.4.39"
|
chrono = "0.4.41"
|
||||||
clap = { version = "4.5.27", features = ["derive"] }
|
clap = { version = "4.5.37", features = ["derive"] }
|
||||||
reqwest = "0.12.12"
|
reqwest = "0.12.15"
|
||||||
rss = "2.0.11"
|
rss = "2.0.12"
|
||||||
serde = { version = "1.0.217", features = ["derive"] }
|
serde = { version = "1.0.219", features = ["derive"] }
|
||||||
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
|
||||||
toml = "0.8.19"
|
toml = "0.8.22"
|
||||||
xdg = "2.5.2"
|
xdg = "2.5.2"
|
||||||
futures = "0.3.31"
|
futures = "0.3.31"
|
||||||
indicatif = "0.17.11"
|
indicatif = "0.17.11"
|
||||||
anyhow = "1.0.95"
|
anyhow = "1.0.98"
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 0
|
opt-level = 0
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<h1>️📰 Packard</h1>
|
<h1>️📰 Packard</h1>
|
||||||
<img alt="GitHub Release" src="https://img.shields.io/github/v/release/troylusty/packard">
|
<img alt="Release" src="https://img.shields.io/gitea/v/release/troy/packard?gitea_url=https%3A%2F%2Fcode.threepop.com">
|
||||||
<h5>Packard is a simple RSS aggregator meant to allow you to take a quick glance at what's occurring in topics you care about.</h5>
|
<h5>Packard is a simple RSS aggregator meant to allow you to take a quick glance at what's occurring in topics you care about.</h5>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
This is my first attempt at making something with Rust so that I may learn alongside creating something that I personally find useful.
|
This is my first attempt at making something with Rust so that I may learn alongside creating something that I personally find useful.
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ On NixOS you can install Packard by including it as an input in flake.nix, then
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
inputs = {
|
inputs = {
|
||||||
packard.url = "github:troylusty/packard";
|
packard.url = "git+https://code.threepop.com/troy/packard";
|
||||||
};
|
};
|
||||||
|
|
||||||
...
|
...
|
||||||
|
@ -24,7 +24,7 @@ environment.systemPackages = {
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
Alternatively, the [latest release](https://github.com/troylusty/packard/releases/latest) binary is available.
|
Alternatively, the [latest release](https://github.com/threepop/packard/releases/latest) binary is available.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
|
|
BIN
demo/demo.gif
Normal file
BIN
demo/demo.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 761 KiB |
|
@ -6,5 +6,6 @@ pkgs.mkShell {
|
||||||
rustfmt
|
rustfmt
|
||||||
pkg-config
|
pkg-config
|
||||||
openssl
|
openssl
|
||||||
|
cargo-edit
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue