-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
101 lines (90 loc) · 2.11 KB
/
Cargo.toml
File metadata and controls
101 lines (90 loc) · 2.11 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[package]
name = "snap-sync"
version = "0.3.0"
edition = "2024"
[workspace]
members = [
"file-sender",
"frigate-api-caller",
"logging",
"mocks",
"mqtt-handler",
"options",
"randomness",
"sync-system",
"test-utils",
"utils",
]
[dependencies]
anyhow = { workspace = true }
tokio = { workspace = true, features = ["full"] }
clap = { workspace = true }
options = { workspace = true }
sync-system = { workspace = true }
[dev-dependencies]
randomness = { workspace = true }
rstest = { workspace = true }
test-utils = { workspace = true }
[workspace.package]
edition = "2024"
rust-version = "1.92"
version = "0.3.0"
license = "MIT"
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1"
aws-config = "1.8"
aws-credential-types = "1.2"
aws-smithy-types = "1.3"
aws-sdk-s3 = { version = "1.124", default-features = true }
bytes = "1.10"
ctor = "0.6"
chrono = "0.4"
clap = "4.5"
ctrlc = "3.4"
futures = "0.3"
humantime = "2.2"
image = "0.25"
ini = "1.3"
itertools = "0.14"
libssh2-sys = "0.3"
log = "0.4"
mockall = "0.14"
rand_chacha = "0.9"
serde = "1.0"
serde_json = "1.0"
serde_yml = "0.0"
tap = "1.0"
tempfile = "3.19"
thiserror = "2.0"
tokio = { version = "1.45", default-features = false }
tracing-subscriber = "0.3"
tracing = "0.1"
reqwest = "0.13"
rstest = "0.26"
rumqttc = "0.25"
russh = "0.57"
serial_test = "3.2"
ssh2 = "0.9"
vfs = "0.12"
file-sender = { path = "file-sender" }
frigate-api-caller = { path = "frigate-api-caller" }
logging = { path = "logging" }
mocks = { path = "mocks" }
mqtt-handler = { path = "mqtt-handler" }
options = { path = "options" }
randomness = { path = "randomness" }
sync-system = { path = "sync-system" }
test-utils = { path = "test-utils" }
utils = { path = "utils" }
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[profile.dev]
panic = "abort" # prevent panic catching (mostly for the tokio runtime)
[profile.release]
panic = "abort" # prevent panic catching (mostly for the tokio runtime)
overflow-checks = true