-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 908 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
31
32
33
[package]
name = "slog_derive"
version = "0.2.1-alpha.0"
authors = ["Michael Bryan <[email protected]>"]
description = "Custom derives for use with slog."
edition = "2018"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["structured", "log", "slog", "derive", "logging"]
documentation = "https://docs.rs/slog_derive"
repository = "https://github.com/slog-rs/derive"
categories = ["development-tools::debugging"]
[package.metadata.release]
sign-commit = true
tag-prefix = "v"
[badges]
travis-ci = { repository = "slog-rs/derive", branch = "master" }
maintenance = { status = "actively-developed" }
[lib]
proc_macro = true
[dependencies]
proc-macro2 = "1.0"
syn = { version = "1.0", features = ["visit", "extra-traits"] }
quote = "1.0"
[dev-dependencies]
slog = { version = "2.5.0", features = ["nested-values"] }
serde = { version = "1.0", features = ["derive"] }
erased-serde = "0.3.3"