[package] name = "hitman" version = "0.9.2" edition = "2021" description = "A command line tool for hitting API endpoints" license = "MIT" homepage = "https://github.com/ropez/hitman" repository = "https://github.com/ropez/hitman" [[bin]] name = "hitman" path = "src/main.rs" [[bin]] name = "hitman-ui" path = "src/main_ui.rs" [dependencies] chrono = "0.4.31" clap = { version = "4.4", features = ["derive"] } futures = "0.3" httparse = "1.8" inquire = { version = "0.7.5", features = ["date"] } jsonpath = "0.1" log = { version = "0.4.20", features = ["std"] } reqwest = { version = "0.12.9", features = ["json", "cookies"] } cookie = { version = "0.18.0" } serde_json = "1.0" termcolor = "1.4.0" thiserror = "2.0.3" tokio = { version = "1", features = ["full", "rt"] } toml = "0.8" walkdir = "2" notify = "7.0.0" spinoff = { version = "0.8.0", features = ["dots"] } anyhow = "1.0.78" crossterm = "0.28.1" ratatui = "0.29.0" fuzzy-matcher = "0.3.7" tui-input = "0.11.0" syntect-tui = "3.0.4" syntect = "5.2.0" graphql-parser = "0.4.0"