-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (41 loc) · 1.41 KB
/
Cargo.toml
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
[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 = "2021"
license = "LGPL-3.0-or-later"
include = [
"**/*.rs",
"Cargo.toml",
"*assets/*",
"COPYRIGHT",
]
[workspace.dependencies]
prosa-utils = { version = "0.1.2", path = "prosa_utils" }
prosa-macros = { version = "0.1.2", path = "prosa_macros" }
thiserror = "1"
aquamarine = "0.5"
bytes = "1"
url = { version = "2", features = ["serde"] }
tokio = "1"
# Config Observability
log = "0.4"
tracing-core = "0.1"
tracing-subscriber = "0.3"
tracing-opentelemetry = "0.25"
opentelemetry = { version = "0.24", features = ["metrics", "trace", "logs"] }
opentelemetry_sdk = { version = "0.24", features = ["metrics", "trace", "logs", "rt-tokio"] }
opentelemetry-stdout = { version = "0.5", features = ["metrics", "trace", "logs"]}
opentelemetry-otlp = { version = "0.17", features = ["metrics", "trace", "logs"]}
prometheus = { version = "0.13" }
prometheus_exporter = { version = "0.8", features = ["logging"] }
opentelemetry-prometheus = { version = "0.17" }
opentelemetry-appender-log = "0.5"