forked from jofas/display_json
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
24 lines (21 loc) · 814 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
[package]
name = "display_json"
version = "0.2.1"
authors = ["jofas <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
description = "Procedural macros for implementing Display, Debug and FromStr for (de)serializing json strings"
keywords = ["Display", "Debug", "FromStr", "json", "serde"]
homepage = "https://github.com/jofas/display_json"
repository = "https://github.com/jofas/display_json"
documentation = "https://docs.rs/display_json"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
syn = { version = "^1.0.0", features = ["derive", "printing", "extra-traits", "parsing"] }
quote = "^1.0.0"
proc-macro2 = "^1.0.24"
serde_json = "^1.0.64"
serde = { version = "^1.0.125", features = ["derive"] }