[package] name = "way_back" version = "1.1.1" edition = "2021" authors = ["DB "] license = "MIT" description = " A command line tool to scrape targets from the Wayback Machine" readme = "README.md" homepage = "https://github.com/whokilleddb/wayback" repository = "https://github.com/whokilleddb/wayback" keywords = ["wayback", "subdomain", "machine", "bugbounty"] categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "wayback" path = "src/main.rs" [dependencies] clap = "4.4.12" reqwest = { version = "0.11", features = ["json", "blocking"]} tokio = { version = "1", features = ["full"] } serde_json = "1.0.107" serde = { version = "1.0", features = ["derive"] } md5 = "0.7.0" chrono = "0.4.31" jsonxf = "1.1" colored = "2.1.0"