Skip to content

Commit

Permalink
making musl-target compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Micha Glave committed Jun 11, 2024
1 parent 05fb08c commit f7cdcec
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ jobs:
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- if: ${{ runner.os == 'Linux' }}
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: openssl libssl-dev musl-tools
version: 1.0
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
features: build-binary
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[package]
name = "planturl"
version = "0.4.3"
version = "0.4.4"
edition = "2021"
authors = ["Micha Glave <[email protected]"]
license = "Apache-2.0 OR MIT AND Zlib"
categories = ["command-line-utilities"]
categories = ["command-line-utilities", "development-tools", "visualization"]
keywords = ["graph", "plantuml"]
repository = "https://github.com/migmedia/planturl"
homepage = "https://github.com/migmedia/planturl"
description = """
A plantuml-file to server-url-encoder and downloader.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ A [plantuml](https://plantuml.com/) file to server-url-encoder. For use with [Gi
documentation tool.
Encodes plantuml-code-snippets as URL usable for the [PlantUML-Service](http://www.plantuml.com/plantuml/) or a
self-hosted clone as described in [PlantUML Text Encoding](https://plantuml.com/pte).
Can return a link, a html-img-snippet or a downloaded image-file for a given PlantUML-snippet.

## Install

check out this project.

```
cargo install --features=build-binary --path=<path to this project>
cargo install --features=build-binary --path=<path to this project>
```

## Usage
Expand Down Expand Up @@ -48,4 +49,3 @@ RENDER_COMMAND = "/path/to/planturl --base-url https://www.plantuml.com/plantuml
IS_INPUT_FILE = false

```

0 comments on commit f7cdcec

Please sign in to comment.