-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 1.04 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
[package]
name = "file_verification_code"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0"
# license-file = "LICENSE.txt"
authors = ["Justin Yeo <[email protected]"]
description = "A library used to calculate file verification codes used to identify file collections that may contain the same files but be packaged differently"
repository = "https://gitlab.aws-eu-north-1.devstar.cloud/WestStar/libraries/rust/file-verification-code"
publish = false
default-run = "fvc"
[dependencies]
clap = { version="4.2.7", features=["derive"]}
colored = "2.0.0"
compress-tools = "0.14.2"
hex = "0.4.3"
hex-literal = "0.4.1"
log = "0.4.17"
serde = {version = "1.0.163", features = ["derive"] }
serde-hex = "0.1.0"
serde_json = "1.0.96"
sha2 = "0.10.6"
stderrlog = "0.5.4"
tempdir = "0.3.7"
walkdir = "2.3.3"
[features]
default = ["extract"]
extract = []
[lib]
name = "file_verification_code"
path = "src/lib/lib.rs"
[[bin]]
name = "fvc"
path = "src/main/main.rs"
[[bin]]
name = "extractor"
path = "src/extractor/main.rs"
required-features = ["extract"]