-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 841 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 841 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
[package]
name = "structdoc"
version = "0.1.4"
authors = ["Michal 'vorner' Vaner <vorner@vorner.cz>"]
edition = "2018"
description = "Extract structure and documentation from structs"
documentation = "https://docs.rs/structdoc"
repository = "https://github.com/vorner/structdoc"
readme = "README.md"
keywords = ["documentation", "configuration"]
license = "Apache-2.0/MIT"
[badges]
travis-ci = { repository = "vorner/structdoc" }
appveyor = { repository = "vorner/structdoc" }
maintenance = { status = "actively-developed" }
[workspace]
members = [
".",
"structdoc-derive",
]
[features]
default = ["structdoc-derive"]
[dependencies]
bitflags = "~1"
itertools = "~0.8"
structdoc-derive = { version = "~0.1.4", path = "structdoc-derive", optional = true }
[dev-dependencies]
serde = "~1"
serde_derive = "~1"
version-sync = "~0.8"