-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (27 loc) · 837 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
27
28
29
30
31
[package]
name = "jisho"
version = "0.2.5"
authors = ["Aku Kotkavuo <[email protected]>"]
edition = "2021"
description = "Jisho is a CLI tool & Rust library that provides a Japanese-English dictionary."
readme = "README.md"
repository = "https://github.com/eagleflo/jisho"
license = "GPL-3.0+"
keywords = ["japanese", "dictionary", "kanji"]
categories = ["command-line-utilities"]
exclude = ["Jisho.org", "JMdict_e.xml", "kanjidic2.xml"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitcode = "0.6.3"
flate2 = "1.0.35"
lazy_static = "1.5.0"
rustc-hash = "2.1.0"
rustyline = "15.0.0"
serde = { version = "1.0", features = ["derive"] }
[build-dependencies]
bitcode = "0.6.3"
flate2 = "1.0.35"
roxmltree = "0.20.0"
rustc-hash = "2.1.0"
[features]
compression = []