bhcli-simple

A simplified version of bhcli
git clone https://git.dasho.dev/bhcli-simple.git
Log | Files | Refs | README

Cargo.toml (990B)


      1 [package]
      2 name = "bhcli"
      3 version = "0.1.0"
      4 edition = "2018"
      5 
      6 [profile.dev]
      7 debug = true
      8 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
      9 
     10 [dependencies]
     11 anyhow = "1.0.70"
     12 base64 = "0.21.0"
     13 bresenham = "0.1.1"
     14 chrono = "0.4.19"
     15 clap = { version = "4.1.14", features = ["derive", "env"] }
     16 clipboard = "0.5.0"
     17 colors-transform = "0.2.4"
     18 confy = "0.5.1"
     19 crossbeam = "0.8.1"
     20 crossbeam-channel = "0.5.15"
     21 crossterm = { version = "0.26.1" }
     22 http = "0.2.4"
     23 image = "0.24.6"
     24 lazy_static = "1.4.0"
     25 linkify = "0.9.0"
     26 log = "0.4.17"
     27 log4rs = "1.2.0"
     28 rand = "0.8.4"
     29 regex = "1.5.4"
     30 reqwest = { version = "0.11.4", features = ["blocking", "cookies", "socks", "multipart"] }
     31 rodio = "0.17.1"
     32 rpassword = "7.2.0"
     33 select = "0.6.0-alpha.1"
     34 serde = "1.0.130"
     35 serde_derive = "1.0.88"
     36 serde_json = "1.0"
     37 termage = "1.1.1"
     38 textwrap = "0.16.0"
     39 toml = "0.7.3"
     40 tui = { version = "0.19.0", features = ["crossterm"], default-features = false  }
     41 unicode-width = "0.1.8"