Preparing for 1.0 release.
This commit is contained in:
parent
58d2c92e3a
commit
feb73531cd
4 changed files with 20 additions and 15 deletions
14
Cargo.toml
14
Cargo.toml
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "jisho-cli"
|
||||
description = "A simple cli tool to lookup Japanese words using jisho.org"
|
||||
version = "0.1.4"
|
||||
version = "1.0.0"
|
||||
authors = ["jojii <jojii@gmx.net>", "Hiers <dvmap@protonmail.com"]
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/Hiers/jisho-cli"
|
||||
|
@ -9,17 +9,17 @@ license = "GPL-3.0"
|
|||
edition = "2018"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
windows-sys = { version = "0.45.0", features = ["Win32_Foundation", "Win32_System_Console", "Win32_UI_Shell"] }
|
||||
windows-sys = { version = "0.52.0", features = ["Win32_Foundation", "Win32_System_Console", "Win32_UI_Shell"] }
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
libc = "0.2.139"
|
||||
libc = "0.2.151"
|
||||
|
||||
[dependencies]
|
||||
ureq = { version = "2.1.0", features = ["json"] }
|
||||
serde_json = "1.0.64"
|
||||
colored = "2.0.0"
|
||||
ureq = { version = "2.8.0", features = ["json"] }
|
||||
serde_json = "1.0.108"
|
||||
colored = "2.1.0"
|
||||
argparse = "0.2.2"
|
||||
atty = "0.2"
|
||||
atty = "0.2.14"
|
||||
kradical_parsing = "0.1.0"
|
||||
|
||||
[features]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue