registry-cli/Cargo.toml

18 lines
490 B
TOML
Raw Permalink Normal View History

2022-01-01 07:01:14 +00:00
[package]
name = "registry-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-01-27 08:07:02 +00:00
crossterm = "0.22.1"
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = {version = "1.0.136", features = ["derive"]}
serde_json = "1.0.78"
tokio = { version = "1", features = ["full"] }
tui = "0.17.0"
2022-02-14 07:35:29 +00:00
clap = { version = "3.0.14", features = ["derive"] }
clipboard = "0.5.0"
url = "2.2.2"