-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 991 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 991 Bytes
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
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
# https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
# <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
# option. This file may not be copied, modified, or distributed
# except according to those terms.
[package]
name = "authenticode-tool"
categories = ["command-line-utilities"]
description = "Authenticode command-line tool"
keywords = ["authenticode", "cli"]
default-run = "authenticode-tool"
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
anyhow = "1.0.71"
authenticode = { path = "../authenticode", version = "0.5.0", features = ["object", "std"] }
clap.workspace = true
cms.workspace = true
der = { workspace = true, features = ["std"] }
digest.workspace = true
object = { workspace = true, features = ["std"] }
sha1.workspace = true
sha2.workspace = true