Skip to content

Commit 624d0db

Browse files
committedFeb 3, 2025
Relicense to MIT OR Apache-2.0
1 parent bf19621 commit 624d0db

12 files changed

+50
-20
lines changed
 

‎Cargo.toml

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "zipsign"
33
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key"
4-
version = "0.1.2"
4+
version = "0.1.3"
55
edition = "2021"
66
authors = ["René Kijewski <crates.io@k6i.de>"]
77
repository = "https://github.com/Kijewski/zipsign"
8-
license = "Apache-2.0 WITH LLVM-exception"
8+
license = "MIT OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception"
99
rust-version = "1.81"
1010

1111
[package.metadata.docs.rs]
@@ -28,18 +28,20 @@ members = [".", "api"]
2828
default-members = [".", "api"]
2929

3030
[workspace.dependencies]
31-
base64 = "0.22"
32-
clap = { version = "4.4", features = ["derive"] }
33-
ed25519-dalek = { version = "2", features = ["digest"] }
34-
normalize-path = "0.2"
35-
pretty-error-debug = "0.3"
36-
rand_core = { version = "0.6", features = ["getrandom"] }
37-
tempfile = "3"
38-
thiserror = "1"
39-
zip = { version = "2", default-features = false }
31+
base64 = "0.22.0"
32+
clap = { version = "4.4.0", features = ["derive"] }
33+
ed25519-dalek = { version = "2.0.0", features = ["digest"] }
34+
normalize-path = "0.2.0"
35+
pretty-error-debug = "0.3.0"
36+
tempfile = "3.0.0"
37+
thiserror = "2.0.8"
38+
zip = { version = "2.0.0", default-features = false }
39+
40+
# Cannot be newer than `ed25519-dalek`'s dependency
41+
rand_core = { version = "0.6.0", features = ["getrandom"] }
4042

4143
[workspace.dependencies.zipsign-api]
42-
version = "0.1.2"
44+
version = "0.1.3"
4345
path = "api"
4446
default-features = false
4547
features = ["tar", "zip"]

‎LICENSE.apache2 ‎LICENSE-APACHE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2023 René Kijewski <crates.io@k6i.de>
1+
Copyright (c) 2023-2025 René Kijewski <crates.io@k6i.de>
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

‎LICENSE-MIT

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Copyright (c) 2023-2025 René Kijewski <crates.io@k6i.de>
2+
3+
Permission is hereby granted, free of charge, to any
4+
person obtaining a copy of this software and associated
5+
documentation files (the "Software"), to deal in the
6+
Software without restriction, including without
7+
limitation the rights to use, copy, modify, merge,
8+
publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software
10+
is furnished to do so, subject to the following
11+
conditions:
12+
13+
The above copyright notice and this permission notice
14+
shall be included in all copies or substantial portions
15+
of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
18+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
19+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
20+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
21+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
24+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25+
DEALINGS IN THE SOFTWARE.

‎README.md

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ A tool to sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key
44

55
[![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)
66
[![Crates.io](https://img.shields.io/crates/v/zipsign?logo=rust)](https://crates.io/crates/zipsign)
7-
![License: License: Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-informational?logo=apache)
87

98
### Install
109

‎api/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "zipsign-api"
33
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key"
4-
version = "0.1.2"
4+
version = "0.1.3"
55
edition = "2021"
66
authors = ["René Kijewski <crates.io@k6i.de>"]
77
repository = "https://github.com/Kijewski/zipsign"
8-
license = "Apache-2.0 WITH LLVM-exception"
8+
license = "MIT OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception"
99
rust-version = "1.73"
1010

1111
[package.metadata.docs.rs]

‎api/LICENSE-APACHE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../LICENSE-APACHE

‎api/LICENSE-MIT

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../LICENSE-MIT

‎api/LICENSE.apache2

-1
This file was deleted.

‎api/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

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

5-
[![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)
6-
[![Crates.io](https://img.shields.io/crates/v/zipsign-api?logo=rust)](https://crates.io/crates/zipsign-api)
7-
![License: License: Apache-2.0](https://img.shields.io/badge/license-Apache--2.0-informational?logo=apache)
5+
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Kijewski/zipsign/ci.yml?branch=main&style=flat-square&logoColor=white)](https://github.com/Kijewski/zipsign/actions/workflows/ci.yml)
6+
[![Crates.io](https://img.shields.io/crates/v/zipsign-api?logo=rust&style=flat-square&logoColor=white)](https://crates.io/crates/zipsign-api)
7+
[![docs.rs](https://img.shields.io/docsrs/zipsign-api?logo=docsdotrs&style=flat-square&logoColor=white "docs.rs")](https://docs.rs/zipsign-api/)
88

99
This library contains the brains of [`zipsign`](https://github.com/Kijewski/zipsign).
1010
You can use it in your projects to verify and sign `.zip` and `.tar.gz` files

‎api/deny.toml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../deny.toml

‎api/rustfmt.toml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../rustfmt.toml

‎api/tomlfmt.toml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../tomlfmt.toml

0 commit comments

Comments
 (0)
Please sign in to comment.