[package]
edition = "2021"
name = "ydt"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple command-line dictionary tool powered by Youdao"
readme = "README.md"
keywords = [
"dictionary",
"translation",
"youdao",
"cli",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/yushengyangchem/ydt"
[lib]
name = "ydt"
path = "src/lib.rs"
[[bin]]
name = "ydt"
path = "src/main.rs"
[[test]]
name = "translation_parser"
path = "tests/translation_parser.rs"
[dependencies.reqwest]
version = "0.13.2"
features = ["blocking"]
[dependencies.scraper]
version = "0.25.0"
[dependencies.url]
version = "2.5.8"