-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (37 loc) · 858 Bytes
/
Cargo.toml
File metadata and controls
55 lines (37 loc) · 858 Bytes
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
[package]
name = "data_orchestra"
authors = ["Mathieu Groenen", "David Lengweiler"]
license = "Apache-2.0"
version = "0.1.0"
edition = "2024"
[profile.release]
debug = true
[dependencies]
# Logger
log = "0.4"
# Console argument parser
clap = { version = "4.5.37", features = ["derive", "env"] }
# HTTP(s) request
reqwest = { version = "0.12", features = ["json"] }
# Async
tokio = { version = "1", features = ["full"] }
# Json parser
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
# Ssh library
ssh2 = "0.9.5"
# Dir traverser
walkdir = "2.5.0"
regex = "1"
dotenvy = "0.15"
tokio-postgres = "0.7.13"
actix-web = "4"
actix-cors = "0.7.1"
derive_builder = "0.20.2"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-appender = "0.2"
thiserror = "2.0.12"
once_cell = "1.21.3"
[dev-dependencies]
rstest = "0.25.0"