-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 952 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 952 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "restructed"
version = "0.2.2"
edition = "2021"
readme = "readme.md"
authors = ["Nex <nex@nexhub.co.uk>"]
description = "Quickly derive subsets of your structs"
keywords = ["view", "patch", "openapi", "derive", "restructed"]
categories = ["rust-patterns", "data-structures"]
license = "Unlicense"
[lib]
proc-macro = true
[features]
default = ["openapi"]
openapi = []
# builder = ["dep:typed-builder"]
# welds = ["dep:welds"]
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["parsing"] }
proc-macro-error = "1.0.4"
[dev-dependencies]
validator = { version = "0.20.0", features = ["derive"] }
# # Supported Crates
poem-openapi = { version = "5.1.15", features = [
"uuid",
"chrono",
]}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.workspaces]
independent = true