forked from jamesmcm/s3rename
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 901 Bytes
/
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
[package]
name = "s3rename"
description = "Tool to mass-rename S3 keys"
version = "0.2.0"
authors = ["James McMurray <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/jamesmcm/s3rename"
homepage = "https://github.com/jamesmcm/s3rename"
[dependencies]
sedregex = "0.2"
tokio = {version = "0.2", features = ["full"]}
rusoto_core = {version = "0.45", default_features=false, features=["rustls"]}
rusoto_s3 = {version = "0.45", default_features=false, features=["rustls"]}
structopt = "0.3"
anyhow = "1"
thiserror = "1"
regex = "1"
lazy_static = "1"
futures = "0.3"
clap = "2"
num-derive = "0.3"
num-traits = "0.2"
log = "0.4"
fern = "0.6"
chrono = "0.4"
[package.metadata.rpm]
package = "s3rename"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
s3rename = { path = "/usr/bin/s3rename" }