[package] name = "rester" version = "0.11.0" edition = "2021" license = "MIT OR Apache-2.0" description = "A Rust application for testing and developing rest APIs." repository = "https://github.com/kinyoklion/rester" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] crossterm = { version = "0.22.1" } tui = { version = "0.16.0", default-features = false, features = ['crossterm'] } strum_macros = "0.23.1" tokio = { version = "1.15.0", features = ["full"] } reqwest = { version = "0.11", features = ["json"] } bytes = "1.1.0" jsonxf = "1.1.1" log = "0.4.14" simplelog = "0.11.2" textwrap = "0.14.2" serde = { version = "1.0.133", features = ["derive"]} serde_json = {version = "1.0.75"} sanitize-filename = {version = "0.4.0"}