forked from NAlexPear/tracing-stackdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (30 loc) · 1.16 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
[package]
name = "tracing-stackdriver-cw"
version = "0.1.0"
authors = ["Alex Pearson <alex@alexpear.com>", "Gabriel Bastos <gabriel.bastos@cloudwalk.io>", "Luiz Silveira <luiz.silveira@cloudwalk.io>"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/cloudwalk/tracing-stackdriver"
description = "Stackdriver-compatible tracing layer and event formatter"
keywords = ["tracing", "stackdriver", "logging", "google", "gcp"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
doctest = false
[features]
valuable = ["dep:valuable", "valuable-serde"]
[dependencies]
Inflector = "0.11.4"
serde_json = "1.0.94"
tracing-core = "0.1.22"
thiserror = "1.0.40"
serde = { version = "1.0.193", features = ["derive"] }
time = { version = "0.3.30", default-features = false, features = ["formatting"] }
tracing-subscriber = { version = "0.3.18", features = ["json"] }
valuable = { version = "0.1.0", optional = true, features = ["derive"] }
valuable-serde = { version = "0.1.0", optional = true }
[dev-dependencies]
tracing = "0.1.34"
time = { version = "0.3.30", features = ["serde", "serde-well-known", "formatting"] }