-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
44 lines (39 loc) · 1.16 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "zipsign"
description = "Sign and verify `.zip` and `.tar.gz` files with an ed25519 signing key"
version = "0.1.2"
edition = "2021"
authors = ["René Kijewski <[email protected]>"]
repository = "https://github.com/Kijewski/zipsign"
license = "Apache-2.0 WITH LLVM-exception"
[workspace]
resolver = "2"
members = [".", "api"]
default-members = [".", "api"]
[workspace.dependencies]
base64 = "0.22"
clap = { version = "4.4", features = ["derive"] }
ed25519-dalek = { version = "2", features = ["digest"] }
normalize-path = "0.2"
pretty-error-debug = "0.3"
rand_core = { version = "0.6", features = ["getrandom"] }
tempfile = "3"
thiserror = "1"
zip = { version = "2", default-features = false }
[workspace.dependencies.zipsign-api]
version = "0.1.2"
path = "api"
default-features = false
features = ["tar", "zip"]
[dependencies]
clap.workspace = true
ed25519-dalek = { workspace = true, features = ["rand_core"] }
normalize-path.workspace = true
pretty-error-debug.workspace = true
rand_core.workspace = true
tempfile.workspace = true
thiserror.workspace = true
zipsign-api.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]