-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
47 lines (42 loc) · 1.29 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
40
41
42
43
44
45
46
[package]
name = "slog-stdlog"
version = "4.1.1"
authors = ["Dawid Ciężarkiewicz <[email protected]>"]
description = "`log` crate adapter for slog-rs"
keywords = ["slog", "logging", "json", "log"]
license = "MPL-2.0 OR MIT OR Apache-2.0"
documentation = "https://docs.rs/slog-stdlog"
homepage = "https://github.com/slog-rs/stdlog"
repository = "https://github.com/slog-rs/stdlog"
readme = "README.md"
edition = "2018"
# This is our Minimum Supported Rust Version (MSRV)
#
# To change this, you must also:
# 1. Update the README file
# 2. Update the github actions file
# 3. Have an appropriate change to the minor version
#
# See the Cargo.toml in the primary slog repo for more details
#
# The first version of Cargo that supports this field was in Rust 1.56.0.
# In older releases, the field will be ignored, and Cargo will display a warning.
#
# DISCLAIMER:
# The log/kv_unstable feature requires a recent (stable) compiler.
# It will not compile with this claimed MSRV and requires a recent (stable) compiler.
rust-version = "1.38"
[lib]
path = "lib.rs"
[features]
default = []
kv_unstable = ["log/kv_unstable_std", "slog/dynamic-keys"]
[dependencies]
slog = "2.4"
slog-scope = "4"
log = { version = "0.4.11", features = ["std"] }
[dev-dependencies]
slog-term = "2"
slog-async = "2"
# Used for tests
fragile = "2"