-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
74 lines (67 loc) · 1.38 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
65
66
67
68
69
70
71
72
73
74
[package]
name = "s3find"
authors = ["Andrii Radyk <ander.ender@gmail.com>"]
version = "0.8.2"
description = """
A command line utility to walk an Amazon S3 hierarchy.
s3find is an analog of find for Amazon S3.
"""
documentation = "https://github.com/AnderEnder/s3find-rs"
homepage = "https://github.com/AnderEnder/s3find-rs"
repository = "https://github.com/AnderEnder/s3find-rs"
keywords = [
"find",
"aws",
"s3",
"pattern",
"regex",
]
categories = ["command-line-utilities"]
license = "BSD-2-Clause"
exclude = [
".travis.yml",
"ci/*",
]
build = "build.rs"
edition = "2018"
[[bin]]
name = "s3find"
path = "src/bin/s3find.rs"
[badges]
travis-ci = { repository = "AnderEnder/s3find-rs"}
codecov = { repository = "AnderEnder/s3find-rs" }
[dependencies]
structopt = "0.3"
glob = "0.3"
regex = "1"
anyhow = "1"
thiserror = "1"
chrono = "0.4"
futures = "0.3"
indicatif = "0.17"
humansize = "2"
itertools = "0.13"
tokio = { version = "1", features=["full"] }
async-trait = "0.1"
aws-types = "1.3"
aws-config = "1.5.7"
aws-sdk-s3 = "1"
aws-smithy-types = "1.2"
[dependencies.clap]
version = "4"
default-features = false
features = [ "suggestions", "color" ]
[dev-dependencies]
tempfile = "3"
[build-dependencies]
version_check = "0.9"
structopt = "0.3"
clap = "4"
glob = "0.3"
regex = "1"
anyhow = "1"
thiserror = "1"
aws-types = "1.3"
[profile.release]
lto = "fat"
codegen-units = 1