-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
64 lines (59 loc) · 1.08 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "s3audit"
version = "1.1.0"
authors = [
# Alphabetical by surname
"Tim Bannister <tim@scalefactory.com>",
"David O'Rourke <david@scalefactory.com>",
]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/scalefactory/s3audit-rs"
repository = "https://github.com/scalefactory/s3audit-rs"
description = "Audit Amazon S3 buckets against recommended practices"
rust-version = "1.78.0"
resolver = "2"
categories = [
"command-line-utilities",
]
keywords = [
"aws",
"cli",
"s3",
"security",
]
exclude = [
".github",
".gitignore",
]
[dependencies]
anyhow = "1.0"
aws-config = "1.5.10"
aws-sdk-s3 = "1.62.0"
aws-types = "1.3.3"
colored = "2"
csv = "1.3"
log = "0.4"
pretty_env_logger = "0.5"
serde_json = "1.0"
[dependencies.clap]
version = "4.5.21"
features = [
"derive",
"std",
"wrap_help",
]
[dependencies.serde]
version = "1.0"
features = [
"derive",
]
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies]
pretty_assertions = "1.4"