-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1.52 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
[workspace]
resolver = "2"
members = [
"prosa_macros",
"prosa_utils",
"prosa",
"cargo-prosa",
]
[workspace.package]
authors = ["Jeremy HERGAULT <jeremy.hergault@worldline.com>", "Anthony THOMAS <anthony.thomas@worldline.com>", "Olivier SCHYNS <olivier.schyns@worldline.com>", "Rene-Louis EYMARD <rene-louis.eymard@worldline.com>"]
homepage = "https://worldline.com/"
repository = "https://github.com/worldline/ProSA"
edition = "2024"
license = "LGPL-3.0-or-later"
include = [
"**/*.rs",
"Cargo.toml",
"*assets/*",
"COPYRIGHT",
]
[workspace.dependencies]
prosa-utils = { version = "0.4.3", path = "prosa_utils" }
prosa-macros = { version = "0.4.2", path = "prosa_macros" }
thiserror = "2"
aquamarine = "0.6"
bytes = "1"
chrono = "0.4"
serde = { version = "1", features = ["derive"] }
url = { version = "2", features = ["serde"] }
tokio = { version = "1", features = ["fs", "macros", "net", "parking_lot", "rt", "rt-multi-thread", "signal", "sync", "time"] }
toml = "0.9"
# Config Observability
log = "0.4"
opentelemetry = { version = "0.31.0", features = ["metrics", "trace", "logs"] }
opentelemetry_sdk = { version = "0.31.0", features = ["metrics", "trace", "logs", "rt-tokio"] }
prometheus = { version = "0.14", default-features = false }
# Config SSL
openssl-sys = { version = "0.9" }
openssl = { version = "0.10" }
# Web
hyper = { version = "1", features = ["server", "http1", "http2"] }
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["server-auto", "http1", "http2", "tokio", "tracing"] }