2020-01-12 10:50:40 +00:00
|
|
|
# SPDX-FileCopyrightText: 2020 Robin Krahl <robin.krahl@ireas.org>
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "rusty-man"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Robin Krahl <robin.krahl@ireas.org>"]
|
|
|
|
edition = "2018"
|
2020-07-19 15:24:38 +00:00
|
|
|
description = "Command-line viewer for rustdoc documentation"
|
2020-01-12 10:50:40 +00:00
|
|
|
keywords = ["doc", "cli", "rustdoc"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-01-12 11:11:31 +00:00
|
|
|
anyhow = "1.0.31"
|
2020-07-16 19:01:29 +00:00
|
|
|
html2text = "0.1.12"
|
2020-01-13 15:04:38 +00:00
|
|
|
kuchiki = "0.8.0"
|
2020-07-17 13:41:08 +00:00
|
|
|
pager = "0.15.0"
|
2020-07-19 20:23:47 +00:00
|
|
|
serde_json = "1.0.56"
|
2020-07-22 14:21:27 +00:00
|
|
|
serde_repr = "0.1.6"
|
2020-07-19 20:23:47 +00:00
|
|
|
serde_tuple = "0.5.0"
|
2020-07-16 21:37:31 +00:00
|
|
|
termion = "1.5.5"
|
2020-01-12 11:11:31 +00:00
|
|
|
|
2020-07-19 20:23:47 +00:00
|
|
|
[dependencies.serde]
|
|
|
|
version = "1.0.114"
|
|
|
|
features = ["derive"]
|
|
|
|
|
2020-01-12 11:11:31 +00:00
|
|
|
[dependencies.structopt]
|
|
|
|
version = "0.3.15"
|
|
|
|
default-features = false
|