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"
|
2020-07-28 12:59:12 +00:00
|
|
|
version = "0.1.3"
|
2020-01-12 10:50:40 +00:00
|
|
|
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-07-24 12:23:31 +00:00
|
|
|
homepage = "https://sr.ht/~ireas/rusty-man"
|
|
|
|
repository = "https://git.sr.ht/~ireas/rusty-man"
|
2020-01-12 10:50:40 +00:00
|
|
|
keywords = ["doc", "cli", "rustdoc"]
|
2020-07-24 11:47:55 +00:00
|
|
|
categories = ["command-line-utilities", "development-tools"]
|
2020-01-12 10:50:40 +00:00
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
2020-07-24 11:47:55 +00:00
|
|
|
exclude = [".builds/*"]
|
2020-01-12 10:50:40 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-01-12 11:11:31 +00:00
|
|
|
anyhow = "1.0.31"
|
2020-07-24 11:18:35 +00:00
|
|
|
crossterm = "0.17.7"
|
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-24 16:10:53 +00:00
|
|
|
log = "0.4.11"
|
2020-07-22 17:07:12 +00:00
|
|
|
markup5ever = "0.10.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-01-12 11:11:31 +00:00
|
|
|
|
2020-07-24 16:10:53 +00:00
|
|
|
[dependencies.env_logger]
|
|
|
|
version = "0.7.1"
|
|
|
|
default-features = false
|
|
|
|
|
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
|
2020-08-10 17:30:12 +00:00
|
|
|
|
|
|
|
[dependencies.syntect]
|
|
|
|
version = "4.3.0"
|
|
|
|
default-features = false
|
|
|
|
features = ["parsing", "regex-onig", "assets", "dump-load"]
|