-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (31 loc) · 1.18 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 = "std-logger"
description = """
A logging implementation for the log crate that logs messages to standard error
and requests to standard out. It support a number of output formats including
JSON, JSON for GCP (gcloud) and logfmt.
"""
version = "0.5.4"
authors = ["Thomas de Zeeuw <thomasdezeeuw@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/std-logger"
repository = "https://github.com/Thomasdezeeuw/std-logger"
readme = "README.md"
keywords = ["logging", "log", "standard", "logfmt", "json"]
categories = ["development-tools::debugging"]
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-MIT", "LICENSE-APACHE"]
edition = "2021"
autobenches = false
[features]
default = ["timestamp", "log-panic"]
log-panic = []
timestamp = []
nightly = []
[dependencies]
log = { version = "0.4.21", default-features = false, features = ["kv_std"] }
itoa = { version = "1.0.1", default-features = false }
ryu = { version = "1.0.5", default-features = false }
[dev-dependencies]
libc = { version = "0.2.86", default-features = false }
[workspace]
members = ["benches", "parser"]