-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (24 loc) · 914 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
[package]
name = "wurstdoktor"
version = "0.2.0"
authors = ["Cokemonkey11"]
edition = "2021"
description = "A wurst to yaml parser for public sourcecode documentation"
license = "MIT OR Apache-2.0"
homepage = "https://cokemonkey11.github.io/wurstdoktor/"
repository = "https://github.com/Cokemonkey11/wurstdoktor"
readme = "README.md"
keywords = ["wurst", "pom", "parser", "yaml", "sqlite"]
categories = ["command-line-utilities", "development-tools", "parser-implementations"]
[features]
sqlitedb = ["rusqlite", "serde_rusqlite"]
[dependencies]
anyhow = "1.0"
clap = { version = "4.3.16", features = ["derive"] }
pom = "3.0.2"
rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_rusqlite = { version = "0.31.0", optional = true }
serde_yaml = "0.8"
thiserror = "1.0.35"