aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: f60302e93c6c43ca2ca8cc1eea7ede0d44bb6e4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "cutlass"
version = "0.1.0"
authors = ["Akshay <[email protected]>"]
edition = "2018"
description = "Macro based library to take the boilerplate out of configuration handling"
readme = "readme.md"
repository = "https://github.com/nerdypepper/cutlass"
license = "MIT"
keywords = ["curry", "currying", "macro", "functional", "haskell"]

[dependencies]
proc-macro2 = "1.0.9"
quote = "1.0"

[dependencies.syn]
version = "1.0"
features = ["full"]

[lib]
proc-macro = true