-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (23 loc) · 880 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
[package]
name = "procout"
version = "0.1.13"
authors = ["Plastic Arts Show <[email protected]>"]
edition = "2018"
description = "Output a proc macro's TokenStream to a file."
keywords = ["dev", "proc", "macro", "print", "debug"]
categories = ["development-tools::debugging", "development-tools::procedural-macro-helpers", "development-tools::testing", ]
license = "MIT"
repository = "https://github.com/plasticartsshow/procout"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = {version = "0.4.0"}
Inflector = {version="0.11.4", default-features=false}
proc-macro2 = {version = "1.0.24"}
quote = {version="1.0.9"}
syn = {version="1.0.60", features=["full", "parsing"]}
[features]
default = ["formatted", "notification"]
procout = ["formatted"]
procout_messy = []
formatted = []
notification = []