-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
36 lines (31 loc) · 935 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
34
35
36
[package]
name = "log-derive"
version = "0.4.1"
license = "MIT/Apache-2.0"
authors = ["Elichai <[email protected]>"]
repository = "https://github.com/elichai/log-derive"
readme = "README.md"
edition = "2018"
description = "Procedural Macros for logging the result and inputs of a function"
categories = ["development-tools::debugging"]
keywords = ["log", "macro", "derive", "logging", "function"]
include = [
"src/*.rs",
"Cargo.toml",
]
[features]
async_test = ["futures-executor"]
[dependencies]
darling = "0.10.0"
proc-macro2 = "1.0.3"
#syn = { version = "0.15", features = ["full", "extra-traits"] } # -> For development
syn = { version = "1.0.5", features = ["full"] }
quote = "1.0.2"
futures-executor = { version = "0.3.5", optional = true } # Can't have optional dev-dependency
[dev-dependencies]
simplelog = "0.8"
log = "0.4"
[badges]
travis-ci = { repository = "elichai/log-derive" }
[lib]
proc-macro = true