[package] name = "mockito" version = "1.6.1" authors = ["Florin Lipan "] license = "MIT" homepage = "https://github.com/lipanski/mockito" repository = "https://github.com/lipanski/mockito" documentation = "https://docs.rs/mockito" description = "HTTP mocking for Rust." keywords = ["mock", "mocks", "http", "webmock", "webmocks"] categories = ["development-tools::testing", "web-programming"] exclude = ["/.appveyor.yml", "/.travis.yml", "/benchmarks.txt", "/docs/", "/slides.pdf"] edition = "2021" rust-version = "1.70" [badges] travis-ci = { repository = "lipanski/mockito", branch = "master" } appveyor = { repository = "lipanski/mockito", branch = "master", service = "github" } [dependencies] assert-json-diff = "2.0" bytes = "1" colored = { version = "2.0", optional = true } futures-util = { version = "0.3", default-features = false } http = "1" http-body = "1" http-body-util = "0.1" hyper = "1" hyper-util = { version = "0.1", features = ["server-auto", "tokio"] } log = "0.4" rand = "0.8" regex = "1.7" serde_json = "1.0" serde_urlencoded = "0.7" similar = "2.2" tokio = { version = "1.25", features = ["net", "parking_lot", "rt", "sync"] } [dev-dependencies] env_logger = "0.8" testing_logger = "0.1" futures = { version = "0.3", default-features = false, features = ["alloc", "async-await"] } reqwest = { version = "0.12", default-features = false, features = ["http2"] } tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] } [features] default = ["color"] color = ["colored"]