-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (46 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
51 lines (46 loc) · 1.36 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
[package]
name = "greenbone-feed-key"
version = "0.2.0"
edition = "2024"
description = "A Service for Uploading a Greenbone Feed Key"
publish = false
[[bin]]
name = "greenbone-feed-key"
path = "src/service/main.rs"
[[bin]]
name = "greenbone-feed-key-cli"
path = "src/cli/main.rs"
[[test]]
name = "service"
harness = false
[dependencies]
axum = { version = "0.8.8", features = ["http2", "multipart"] }
axum-server = { version = "0.8.0", features = ["tls-rustls"] }
base64 = "0.22.1"
chrono = "0.4.44"
clap = { version = "4.5.60", features = ["derive", "env"] }
futures = "0.3.32"
gvm-auth = "0.1.4"
jsonwebtoken = { version = "10.3.0", features = ["aws_lc_rs"] }
rustls = "0.23.37"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.18"
tempfile = "3.26.0"
tokio = { version = "1.49.0", features = ["full"] }
tokio-stream = "0.1.18"
tokio-util = { version = "0.7.18", features = ["io"] }
tower = "0.5.3"
tower-http = { version = "0.6.8", features = [
"compression-full",
"decompression-full",
"fs",
"trace",
] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
utoipa = { version = "5.4.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
[dev-dependencies]
cucumber = { version = "0.22.1", features = ["tracing"] }
rust-multipart-rfc7578_2 = "0.9.0"