forked from hrxi/tracing-loki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 901 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 901 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
[workspace]
members = [
"loki-api",
"loki-api/generate",
]
[package]
name = "tracing-loki"
description = "A tracing layer for shipping logs to Grafana Loki"
authors = ["hrxi <hrrrxi@gmail.com>"]
repository = "https://github.com/hrxi/tracing-loki"
keywords = ["tracing", "loki"]
version = "0.2.6"
license = "MIT/Apache-2.0"
edition = "2021"
[dependencies]
loki-api = { version = "0.1.0", path = "loki-api" }
reqwest = { version = "0.12.23", default-features = false }
snap = "1.1.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
tokio = { version = "1.47.1", features = ["sync"] }
tracing = "0.1.41"
tracing-core = "0.1.34"
tracing-log = "0.2.0"
tracing-serde = "0.2.0"
tracing-subscriber = "0.3.20"
url = "2.5.7"
[dev-dependencies]
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
[features]
default = ["compat-0-2-1"]
compat-0-2-1 = []