forked from freesig/observability
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.13 KB
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]
name = "aingle-observability"
version = "0.1.0"
authors = ["Apilium Technologies <hello@apilium.com>"]
edition = "2021"
rust-version = "1.89"
description = "Observability and tracing utilities for AIngle"
readme = "README.md"
license = "MIT"
homepage = "https://apilium.com"
documentation = "https://docs.rs/aingle-observability"
repository = "https://github.com/ApiliumCode/observability"
keywords = ["aingle", "tracing", "observability", "logging", "telemetry"]
categories = ["development-tools::debugging"]
[lib]
name = "aingle_observability"
[features]
default = []
channels = ["tokio", "shrinkwraprs"]
[dependencies]
chrono = "0.4"
derive_more = "0.99"
inferno = "0.12"
serde_json = { version = "1.0", features = [ "preserve_order" ] }
thiserror = "1.0"
tracing = "0.1"
tracing-core = "0.1"
tracing-serde = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tokio = { version = "1", features = [ "sync" ], optional = true }
shrinkwraprs = { version = "0.3.0", optional = true }
once_cell = "1.5"
[dev-dependencies]
tokio = { version = "1", features = [ "full" ] } # Updated from 0.2
tracing-futures = "0.2"