-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
42 lines (39 loc) · 1.15 KB
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
[package]
name = "s3-sync-rs"
version = "2023.4.3"
edition = "2021"
description = "Sync local folder(s) to an S3 backend"
license = "MIT"
repository = "https://github.com/openartcoded/s3-sync-rs"
[dependencies]
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = [
"env-filter",
"time",
"local-time",
] }
tokio = { version = "1.29.1", features = ["rt", "macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1.14", features = ["fs"] }
aws-sdk-s3 = "0.33.0"
aws-config = "0.56.1"
aws-smithy-types = "0.56.1"
aws-smithy-http = { version = "0.56.1" }
time = { version = "0.3.29", features = [
"formatting",
"local-offset",
"macros",
] }
chrono = "0.4.31"
cron = "0.12.0"
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
paho-mqtt = { version = "0.12.2", default-features = false, features = [
"bundled",
] }
lazy_static = "1.4.0"
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true # Link Time Optimization (LTO)
codegen-units = 1 # Set this to 1 to allow for maximum size reduction optimizations:
panic = 'abort' # removes the need for this extra unwinding code.
strip = "symbols"