aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-03-15 16:23:30 +0000
committerAkshay <[email protected]>2020-03-15 16:23:30 +0000
commitb080112c6ce1d969710bef1bd536d6a2f9146a50 (patch)
treef8574c4dd555d8f10be0903bd5d310eef95236f1
parent62f185fe76ea97bbc2914c28a47a952fa07e6b6b (diff)
add yaml, and json capabilities
-rw-r--r--Cargo.toml8
1 files changed, 3 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3fa7044..fd65091 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,11 +4,12 @@ version = "0.1.0"
4authors = ["Akshay <[email protected]>"] 4authors = ["Akshay <[email protected]>"]
5edition = "2018" 5edition = "2018"
6 6
7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9[dependencies] 7[dependencies]
10quote = "1.0" 8quote = "1.0"
11toml = "^0.5" 9toml = "^0.5"
10serde_yaml = "0.8"
11serde_json = "1.0.48"
12directories = "2.0"
12 13
13[dependencies.serde] 14[dependencies.serde]
14version = "1.0.103" 15version = "1.0.103"
@@ -17,6 +18,3 @@ features = ["derive"]
17[dependencies.syn] 18[dependencies.syn]
18version = "1.0" 19version = "1.0"
19features = ["full"] 20features = ["full"]
20
21[lib]
22proc-macro = true