[package] name = "sk-terminal-tool" version = "0.0.1" edition = "2021" description = "A easy terminal tool." license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "kcat" path = "src/kcat/bin/main.rs" [[bin]] name = "kgit" path = "src/kgit/bin/main.rs" [[bin]] name = "ktool" path = "src/ktool/bin/main.rs" [[bin]] name = "kcurl" path = "src/kcurl/bin/main.rs" [dependencies] anyhow = "1.0" tokio = { version = "1.32.0", features = ["full"] } clap = { version = "4.4.1", features = ["derive"] } log = "0.4.20" env_logger= "0.10.0" hyper = { version = "0.14", features = ["full"] } futures = "0.3.29" lopdf = "0.31.0" serde = {version="1.0.190",features = ["derive"]} serde_json = "1.0.108" rayon = "1.8.0" shellexpand = "3.1.0" viuer = "0.6" git2 = "0.18.1" prettytable-rs = "^0.10" byte-unit = "4.0.19" openssl = { version = "0.10", features = ["vendored"] } indicatif = "0.17.7" colored = "2" http = "0.2" tokio-openssl = "0.6" chrono = "0.4.31" tracing-subscriber = { version = "^0.3.16", features = ["env-filter"] } tracing = "0.1.40" bytes = "1" hyper-rustls = "0.24.2" rustls = {version="0.21.8",features = ["dangerous_configuration"]} rustls-pemfile = "1.0.3" webpki-roots = "0.25.0" base64 = "0.21.5" md-5 = "0.10.6"