Sniff and replay HTTP requests and responses — perfect for mocking APIs during testing.
at main 802 B view raw
1[package] 2name = "replay" 3version = "0.1.2" 4edition = "2024" 5description = "A simple HTTP request replay tool" 6license = "Apache-2.0" 7keywords = ["http", "replay", "cli"] 8readme = "README.md" 9repository = "https://github.com/tsirysndr/replay" 10categories = ["command-line-utilities", "development-tools"] 11authors = ["Tsiry Sandratraina <tsiry.sndr@rocksky.app>"] 12 13[dependencies] 14actix-web = "4.10.2" 15clap = "4.5.37" 16http-body-util = "0.1.3" 17hyper = { version = "1.6.0", features = ["full"] } 18hyper-util = { version = "0.1.11", features = ["tokio"] } 19owo-colors = "4.2.0" 20reqwest = { version = "0.12.15", features = [ 21 "rustls-tls", 22 "json", 23], default-features = false } 24serde = { version = "1.0.219", features = ["derive"] } 25serde_json = "1.0.140" 26tokio = { version = "1.44.2", features = ["full"] }