-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 910 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
25
26
27
28
29
30
[package]
name = "tracing_sprout"
version = "0.1.0-alpha.6"
authors = ["Naaman Curtis <[email protected]>"]
edition = "2018"
description = "A tokio-rs/tracing structured JSON formatting layer for the fledgling logger"
readme = "readme.md"
keywords = ["tracing", "logging"]
license = "MIT"
repository = "https://github.com/naamancurtis/tracing-sprout"
categories = ["development-tools::debugging"]
include = [
"**/*.rs",
"Cargo.toml",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "^0.4"
json = "^0.12"
thiserror = "^1.0"
tracing = "^0.1"
tracing-core = "^0.1"
tracing-log = "^0.1"
tracing-subscriber = { version = "^0.3", default-features = false, features = ["registry", "fmt"] }
[dev-dependencies]
tracing-subscriber = { version = "^0.3", default-features = false, features = ["registry", "fmt", "env-filter"] }