Skip to content

Commit

Permalink
workflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
kolja committed Nov 26, 2024
1 parent 6a3ddd5 commit 5d29eed
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y pkg-config libssl-dev
export PKG_CONFIG_PATH="/usr/lib/x86_64-linux-gnu/pkgconfig"
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/upload-rust-binary-action@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orca"
version = "0.1.2"
version = "0.1.3"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -26,3 +26,6 @@ clap = {version = "*", features = ["derive"]}
crypto-hash = "0.3.4"
rand = "0.8.5"
regex = "1.11.1"
# needed for Linux builds:
openssl-sys = "0.9"
openssl = "0.10"
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use crate::appstate::AppState;
#[derive(Parser, Debug)]
#[clap(
author = "Kolja Wilcke",
version = "0.1.2",
version = "0.1.3",
about = "A simple OPDS server for Calibre libraries"
)]
struct Cli {
Expand Down

0 comments on commit 5d29eed

Please sign in to comment.