-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
24 lines (21 loc) · 862 Bytes
/
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
[package]
name = "datadog-apm-sync"
version = "0.7.0"
authors = ["Michael Micucci <9975355+kitsuneninetails@users.noreply.github.com>", "Fernando Gonçalves <fernando.goncalves@pipefy.com> (original base code)"]
edition = "2018"
license = "MIT"
readme = "README.md"
description = "Datadog APM-compatible tracer and logger for Rust"
repository = "https://github.com/kitsuneninetails/datadog-apm-rust-sync"
[dependencies]
chrono = {version = "0.4.26", default-features = false, features = ["clock"] }
crossbeam-channel = "0.5.6"
log = {version = "0.4", features = ["std"] }
attohttpc = { version = "0.28", default-features=false, features = ["json", "tls-rustls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }
[features]
json = ["log/kv", "log/kv_serde"]