-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 1.21 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
[package]
authors = ["David Schmitt <[email protected]>"]
description = "egads! The Easy Google API Discovery Service tool"
edition = "2021"
homepage = "https://github.com/DavidS/egads"
license = "Apache-2.0"
name = "egads"
readme = "README.md"
repository = "https://github.com/DavidS/egads"
version = "0.10.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
http = "0.2.8"
opentelemetry_api = "0.1.0"
reqwest = "^0.11"
reqwest-middleware = "^0.1"
reqwest-retry = "^0.1"
serde = {version = "^1.0", features = ["derive"]}
serde_json = "^1.0"
thiserror = "1.0.31"
tracing = {version = "0.1.35", features = ["attributes", "max_level_debug", "release_max_level_info"]}
[dev-dependencies]
futures = "0.3.21"
opentelemetry = {version = "0.17.0", features = ["rt-tokio"]}
opentelemetry-otlp = {version = "0.10.0"}
tokio = {version = "^1.18", features = ["full"]}
tonic = "0.6"
# tonic = "0.7"
tracing-opentelemetry = {version = "0.17.4", optional = false}
tracing-subscriber = {version = "0.3.14", features = []}
[features]
tracing = [] # ["dep:tracing", "dep:tracing-opentelemetry"]
# [patch.crates-io]
# opentelemetry-otlp = {path = "../opentelemetry-rust/opentelemetry-otlp/"}