-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
30 lines (27 loc) · 863 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
[package]
name = "buildstructor"
version = "0.6.0"
edition = "2021"
authors = ["Bryn Cooke <bryncooke@gmail.com>"]
license = "Apache-2.0"
description = "Macro to derive a builder from a constructor function."
homepage = "https://github.com/BrynCooke/buildstructor"
repository = "https://github.com/BrynCooke/buildstructor"
categories = ["development-tools", "rust-patterns"]
keywords = ["derive", "macro", "builder", "constructor"]
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.66"
quote = "1.0.33"
syn = { version = "2.0.38", features = ["full", "extra-traits"] }
try_match = "0.4.1"
str_inflector = "0.12.0"
[dev-dependencies]
trybuild = "1.0.84"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
insta = "1.31.0"
rust-format = "0.3.4"
http = "1.0.0"
derive_more = { version = "2.0.1", features = ["from"] }
multimap = "0.10.0"