Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Kijewski committed Sep 14, 2023
1 parent a10d3f8 commit a33721b
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 26 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "zipsign"
description = "Sign a file with an ed25519 signing key"
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key"
version = "0.1.0-a.0"
edition = "2021"
authors = ["René Kijewski <[email protected]>"]
license = "MIT OR Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/Kijewski/zipsign"
license = "Apache-2.0 WITH LLVM-exception"

[workspace]
resolver = "2"
Expand Down
19 changes: 0 additions & 19 deletions LICENSE.mit

This file was deleted.

8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## zipsign: Sign a file with an ed25519ph signing key
## zipsign

A tool to sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key.

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Kijewski/zipsign/ci.yml?branch=main)](https://github.com/Kijewski/zipsign/actions/workflows/ci.yml)
[![Crates.io](https://img.shields.io/crates/v/zipsign?logo=rust)](https://crates.io/crates/zipsign-api)
![License: License: Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-informational?logo=apache)

### Install

Expand Down
5 changes: 3 additions & 2 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "zipsign-api"
description = "Verify files signed with `zipsign`"
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key"
version = "0.1.0-a.0"
edition = "2021"
authors = ["René Kijewski <[email protected]>"]
license = "MIT OR Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/Kijewski/zipsign"
license = "Apache-2.0 WITH LLVM-exception"

[dependencies]
base64 = { workspace = true, optional = true }
Expand Down
1 change: 0 additions & 1 deletion api/LICENSE.mit

This file was deleted.

12 changes: 11 additions & 1 deletion api/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
## zipsign-api: Verify ed25519ph signed files
## zipsign-api

Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key.

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Kijewski/zipsign/ci.yml?branch=main)](https://github.com/Kijewski/zipsign/actions/workflows/ci.yml)
[![Crates.io](https://img.shields.io/crates/v/zipsign?logo=rust)](https://crates.io/crates/zipsign)
![License: License: Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-informational?logo=apache)

This library contains the brains of [`zipsign`](https://github.com/Kijewski/zipsign).
You can use it in your projects to verify and sign `.zip` and `.tar.gz` files
without running a separate application, e.g. to verify a self-update.

0 comments on commit a33721b

Please sign in to comment.